From ccdbb6056a8a3db4bc48150f41142244222887c1 Mon Sep 17 00:00:00 2001 From: Janos Erdos Date: Fri, 15 Oct 2021 20:53:22 +0200 Subject: [PATCH] feat: version 0.3.28 --- README.md | 8 ++++---- project.clj | 2 +- service/project.clj | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index ef233fa9..0597ac7c 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.3.27` +**Latest stable** version is `0.3.28` -**Latest snapshot** version is `0.3.28-SNAPSHOT` +**Latest snapshot** version is `0.3.29-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.3.27 + 0.3.28 ``` @@ -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.3.27"]` +file: `[io.github.erdos/stencil-core "0.3.28"]` 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 d1d81ebf..9ce0596a 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject io.github.erdos/stencil-core "0.3.28-SNAPSHOT" +(defproject io.github.erdos/stencil-core "0.3.28" :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 d4e0a855..969908bb 100644 --- a/service/project.clj +++ b/service/project.clj @@ -1,10 +1,10 @@ -(defproject io.github.erdos/stencil-service "0.3.28-SNAPSHOT" +(defproject io.github.erdos/stencil-service "0.3.28" :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.10.2-alpha2"] - [io.github.erdos/stencil-core "0.3.28-SNAPSHOT"] + [io.github.erdos/stencil-core "0.3.28"] [org.slf4j/slf4j-api "2.0.0-alpha5"] [http-kit "2.5.0"] [ring/ring-json "0.4.0"]]