diff --git a/ChangeLog.md b/ChangeLog.md index d0f53377..e17ba1db 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,8 @@ +## Changes between Cheshire 5.3.1 and 5.3.0 + +* Fix string parsing for 1 and 2 arity methods +* Bump Jackson to 2.3.1 + ## Changes between Cheshire 5.3.0 and 5.2.0 * Dependencies have been bumped diff --git a/README.md b/README.md index 9371e062..6eae8fe7 100644 --- a/README.md +++ b/README.md @@ -38,9 +38,9 @@ encoders. ## Usage ```clojure -[cheshire "5.3.0"] +[cheshire "5.3.1"] -;; Cheshire v5.3.0 uses Jackson 2.3.0 +;; Cheshire v5.3.1 uses Jackson 2.3.1 ;; In your ns statement: (ns my.ns diff --git a/project.clj b/project.clj index 1d749aa9..e9f05b92 100644 --- a/project.clj +++ b/project.clj @@ -1,12 +1,12 @@ -(defproject cheshire "5.3.1-SNAPSHOT" +(defproject cheshire "5.3.1" :description "JSON and JSON SMILE encoding, fast." :url "https://github.com/dakrone/cheshire" :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT" :distribution :repo} :warn-on-reflection false - :dependencies [[com.fasterxml.jackson.core/jackson-core "2.3.0"] - [com.fasterxml.jackson.dataformat/jackson-dataformat-smile "2.3.0"] + :dependencies [[com.fasterxml.jackson.core/jackson-core "2.3.1"] + [com.fasterxml.jackson.dataformat/jackson-dataformat-smile "2.3.1"] [tigris "0.1.1"]] :profiles {:dev {:dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/test.generative "0.1.4"]]}