From 21ad49e33cd035e746cdba2f00012150e0eb815d Mon Sep 17 00:00:00 2001 From: Janos Erdos Date: Mon, 17 Dec 2018 15:35:49 +0100 Subject: [PATCH] release v0.2.6 --- 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 ddd5a709..8ccb6654 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,9 @@ them to make the template more readable. ## Version -**Latest stable** version is `0.2.5` +**Latest stable** version is `0.2.6` -**Latest snapshot** version is `0.2.6-SNAPSHOT` +**Latest snapshot** version is `0.2.7-SNAPSHOT` If you are using Maven, add the followings to your `pom.xml`: @@ -36,7 +36,7 @@ The dependency: io.github.erdos stencil-core - 0.2.5 + 0.2.6 ``` @@ -51,7 +51,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.5"]` +file: `[io.github.erdos/stencil-core "0.2.6"]` 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 fcaa57b2..45b7909c 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject io.github.erdos/stencil-core "0.2.6-SNAPSHOT" +(defproject io.github.erdos/stencil-core "0.2.6" :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 a7e079c7..70167e18 100644 --- a/service/project.clj +++ b/service/project.clj @@ -1,10 +1,10 @@ -(defproject io.github.erdos/stencil-service "0.2.5" +(defproject io.github.erdos/stencil-service "0.2.6" :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.9.0"] - [io.github.erdos/stencil-core "0.2.6-SNAPSHOT"] + [io.github.erdos/stencil-core "0.2.6"] [http-kit "2.2.0"] [ring/ring-json "0.4.0"]] :main stencil.service.core)