Skip to content

Commit 78fff3f

Browse files
committed
chore: Releasing v0.6.6
1 parent beeaf1d commit 78fff3f

File tree

5 files changed

+16
-14
lines changed

5 files changed

+16
-14
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. This change
55
### Changed
66
- ....
77

8+
## [0.6.6] - 2025-10-07
9+
### Changed
10+
- Remove template file enumeration on startup of the Stencil service.
11+
12+
## [0.6.5] - TODO
13+
814
## [0.6.4] - 2025-09-10
915
### Changed
1016
- Fix keys starting with digit, issue #175 - a regression introduced in #91

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ The project has a simple [service implementation](https://github.com/erdos/stenc
4141

4242
## 👉 Version
4343

44-
**Latest stable** version is `0.6.5`
44+
**Latest stable** version is `0.6.6`
4545

46-
**Latest snapshot** version is `0.6.6-SNAPSHOT`
46+
**Latest snapshot** version is `0.6.7-SNAPSHOT`
4747

4848
Previous versions are available on the [Stencil Clojars](https://clojars.org/io.github.erdos/stencil-core) page.
4949

@@ -58,7 +58,7 @@ Previous versions are available on the [Stencil Clojars](https://clojars.org/io.
5858
<dependency>
5959
<groupId>io.github.erdos</groupId>
6060
<artifactId>stencil-core</artifactId>
61-
<version>0.6.5</version>
61+
<version>0.6.6</version>
6262
</dependency>
6363
```
6464

@@ -75,21 +75,21 @@ Previous versions are available on the [Stencil Clojars](https://clojars.org/io.
7575
<details>
7676
<summary><b>For Java with Gradle</b></summary>
7777

78-
Add to the `dependencies` section of your `build.gradle` file: `implementation('io.github.erdos/stencil-core:0.6.5')`
78+
Add to the `dependencies` section of your `build.gradle` file: `implementation('io.github.erdos/stencil-core:0.6.6')`
7979
</details>
8080

8181
<details>
8282
<summary><b>For Clojure with Leiningen</b></summary>
8383

8484
If you are using Leiningen, add the following to the `:dependencies` section of your `project.clj` file:
8585

86-
`[io.github.erdos/stencil-core "0.6.5"]`
86+
`[io.github.erdos/stencil-core "0.6.6"]`
8787
</details>
8888

8989
<details>
9090
<summary><b>For Clojure with deps.edn</b></summary>
9191

92-
Add `io.github.erdos/stencil-core {:mvn/version "0.6.5"}`
92+
Add `io.github.erdos/stencil-core {:mvn/version "0.6.6"}`
9393
</details>
9494

9595

deps.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
org.slf4j/slf4j-api {:mvn/version "2.0.9"}}
44
:paths ["src" "target/classes"]
55
:aliases
6-
{:stencil/version "0.6.6-SNAPSHOT"
6+
{:stencil/version "0.6.6"
77

88
:build
99
{:deps {org.clojure/clojure {:mvn/version "1.12.0-beta1"}

service/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
(defproject io.github.erdos/stencil-service "0.6.6-SNAPSHOT"
1+
(defproject io.github.erdos/stencil-service "0.6.6"
22
:description "Web service for the Stencil templating engine"
33
:url "https://github.com/erdos/stencil"
44
:license {:name "Eclipse Public License - v 2.0"
55
:url "https://www.eclipse.org/legal/epl-2.0/"}
66
:dependencies [[org.clojure/clojure "1.11.1"]
7-
[io.github.erdos/stencil-core "0.6.6-SNAPSHOT"]
7+
[io.github.erdos/stencil-core "0.6.6"]
88
[org.slf4j/slf4j-api "2.0.9"]
99
[org.mozilla/rhino-engine "1.7.14"]
1010
[http-kit "2.7.0"]

service/src/stencil/service.clj

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,4 @@
122122
(let [http-port (get-http-port)
123123
template-dir ^File (get-template-dir)
124124
server (run-server app {:port http-port})]
125-
(log/info "Started listening on {} serving {}" http-port (str template-dir))
126-
(log/info "Available template files:")
127-
(doseq [^File line (file-seq template-dir)
128-
:when (.isFile line)]
129-
(log/info "- {}" (.relativize (.toPath template-dir) (.toPath line))))))
125+
(log/info "Started listening on {} serving {}" http-port (str template-dir))))

0 commit comments

Comments
 (0)