diff --git a/README.md b/README.md index f6bbd891..2181c98a 100644 --- a/README.md +++ b/README.md @@ -23,9 +23,9 @@ them to make the template more readable. ## Version -**Latest stable** version is `0.2.3` +**Latest stable** version is `0.2.4` -**Latest snapshot** version is `0.2.4-SNAPSHOT` +**Latest snapshot** version is `0.2.5-SNAPSHOT` If you are using Maven, add the followings to your `pom.xml`: @@ -35,7 +35,7 @@ The dependency: io.github.erdos stencil-core - 0.2.3 + 0.2.4 ``` @@ -50,7 +50,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.2.3"]` +file: `[io.github.erdos/stencil-core "0.2.4"]` Previous versions are available on the [Stencil Clojars](https://clojars.org/io.github.erdos/stencil-core) page. diff --git a/project.clj b/project.clj index 4d262543..95b45174 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject io.github.erdos/stencil-core "0.2.4-SNAPSHOT" +(defproject io.github.erdos/stencil-core "0.2.4" :url "https://github.com/erdos/stencil" :description "Templating engine for office documents." :license {:name "Eclipse Public License - v 2.0" diff --git a/service/project.clj b/service/project.clj index 4272eba8..a7e84d12 100644 --- a/service/project.clj +++ b/service/project.clj @@ -1,10 +1,10 @@ -(defproject io.github.erdos/stencil-service "0.2.3" +(defproject io.github.erdos/stencil-service "0.2.4" :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.8.0"] - [io.github.erdos/stencil-core "0.2.3"] + [io.github.erdos/stencil-core "0.2.4"] [http-kit "2.2.0"] [ring/ring-json "0.4.0"]] :main stencil.service.core)