diff --git a/CHANGELOG.md b/CHANGELOG.md index 7753f61..8412d75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,22 @@ > This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) +## v1.4.0 - 2022 Oct 17 + +```clojure +[com.taoensso/tempura "1.4.0"] +``` + +> This is a minor maintenance release that should be non-breaking. + +* **New**: [Experimental] Add `:experimental/compact-vectors?` option to `get-default-resource-compiler` +* **New**: [Experimental] Add `:default-tag` option to `default-resource-compiler` +* Update dependencies + + ## v1.3.0 - 2022 May 12 ```clojure -[com.taoensso/tempura "1.3.0"] ; See CHANGELOG for details +[com.taoensso/tempura "1.3.0"] ``` > This is a minor maintenance release that should be non-breaking for the vast majority of users. diff --git a/README.md b/README.md index b1bcd06..b2619d6 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ **[CHANGELOG]** | [API] | current [Break Version]: ```clojure -[com.taoensso/tempura "1.3.0"] +[com.taoensso/tempura "1.4.0"] ; See CHANGELOG for details ``` > See [here](https://taoensso.com/clojure/backers) if you're interested in helping support my open-source work, thanks! - Peter Taoussanis @@ -77,8 +77,8 @@ See [here][tutorial] for a detailed tutorial by [Dr. Wolfram Schroers][@field-th Add the necessary dependency to your project: ```clojure -Leiningen: [com.taoensso/tempura "1.3.0"] ; or -deps.edn: com.taoensso/tempura {:mvn/version "1.3.0"} +Leiningen: [com.taoensso/tempura "1.4.0"] ; or +deps.edn: com.taoensso/tempura {:mvn/version "1.4.0"} ``` Setup your namespace imports: diff --git a/project.clj b/project.clj index 00ff953..caa3298 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/tempura "1.3.0" +(defproject com.taoensso/tempura "1.4.0" :author "Peter Taoussanis " :description "Pure Clojure/Script i18n translations library" :url "https://github.com/ptaoussanis/tempura"