From f6fc4012f881a5fd004e07cb724eb280d8c54fa6 Mon Sep 17 00:00:00 2001 From: Janos Erdos Date: Fri, 2 Dec 2022 14:26:55 +0100 Subject: [PATCH] feat: version 0.5.0 (#143) --- README.md | 8 ++++---- project.clj | 4 ++-- service/project.clj | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 72e68fe5..8ed88240 100644 --- a/README.md +++ b/README.md @@ -45,9 +45,9 @@ The project has a simple [service implementation](https://github.com/erdos/stenc ## Version -**Latest stable** version is `0.4.7` +**Latest stable** version is `0.5.0` -**Latest snapshot** version is `0.4.8-SNAPSHOT` +**Latest snapshot** version is `0.5.1-SNAPSHOT` If you are using Maven, add the followings to your `pom.xml`: @@ -57,7 +57,7 @@ The dependency: io.github.erdos stencil-core - 0.4.7 + 0.5.0 ``` @@ -72,7 +72,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.4.7"]` +file: `[io.github.erdos/stencil-core "0.5.0"]` 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 067f0ea2..8f53dd84 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject io.github.erdos/stencil-core "0.4.8-SNAPSHOT" +(defproject io.github.erdos/stencil-core "0.5.0" :url "https://github.com/erdos/stencil" :description "Templating engine for office documents." :license {:name "Eclipse Public License - v 2.0" @@ -46,4 +46,4 @@ (eval '(sta/instrument))]} :ci {:plugins [[lein-javadoc "0.3.0"] [lein-cloverage "1.2.2"]] - }}) \ No newline at end of file + }}) diff --git a/service/project.clj b/service/project.clj index c030937c..c0e5954d 100644 --- a/service/project.clj +++ b/service/project.clj @@ -1,10 +1,10 @@ -(defproject io.github.erdos/stencil-service "0.4.8-SNAPSHOT" +(defproject io.github.erdos/stencil-service "0.5.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.4.8-SNAPSHOT"] + [io.github.erdos/stencil-core "0.5.0"] [org.slf4j/slf4j-api "2.0.0-alpha7"] [org.mozilla/rhino-engine "1.7.14"] [http-kit "2.5.0"]