diff --git a/README.md b/README.md index ab98f7f3..4ab5056e 100644 --- a/README.md +++ b/README.md @@ -40,9 +40,9 @@ The project has a simple [service implementation](https://github.com/erdos/stenc ## Version -**Latest stable** version is `0.5.9` +**Latest stable** version is `0.6.0` -**Latest snapshot** version is `0.5.10-SNAPSHOT` +**Latest snapshot** version is `0.6.1-SNAPSHOT` If you are using Maven, add the followings to your `pom.xml`: @@ -52,7 +52,7 @@ The dependency: io.github.erdos stencil-core - 0.5.9 + 0.6.0 ``` @@ -67,7 +67,7 @@ And the [Clojars](https://clojars.org) repository: Alternatively, if you are using Leiningen, add the following to the `:dependencies` section of your `project.clj` -file: `[io.github.erdos/stencil-core "0.5.9"]` +file: `[io.github.erdos/stencil-core "0.6.0"]` Previous versions are available on the [Stencil Clojars](https://clojars.org/io.github.erdos/stencil-core) page. diff --git a/deps.edn b/deps.edn index ccc44bf6..c0a2e692 100644 --- a/deps.edn +++ b/deps.edn @@ -3,7 +3,7 @@ org.slf4j/slf4j-api {:mvn/version "2.0.9"}} :paths ["src" "target/classes"] :aliases - {:stencil/version "0.5.10-SNAPSHOT" + {:stencil/version "0.6.0" :build {:deps {org.clojure/clojure {:mvn/version "1.12.0-beta1"} diff --git a/service/project.clj b/service/project.clj index 5a36248c..4b53c081 100644 --- a/service/project.clj +++ b/service/project.clj @@ -1,10 +1,10 @@ -(defproject io.github.erdos/stencil-service "0.5.10-SNAPSHOT" +(defproject io.github.erdos/stencil-service "0.6.0" :description "Web service for the Stencil templating engine" :url "https://github.com/erdos/stencil" :license {:name "Eclipse Public License - v 2.0" :url "https://www.eclipse.org/legal/epl-2.0/"} :dependencies [[org.clojure/clojure "1.11.1"] - [io.github.erdos/stencil-core "0.5.10-SNAPSHOT"] + [io.github.erdos/stencil-core "0.6.0"] [org.slf4j/slf4j-api "2.0.9"] [org.mozilla/rhino-engine "1.7.14"] [http-kit "2.7.0"]