Skip to content

Commit

Permalink
Release 5.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dakrone committed Jan 10, 2014
1 parent 3d54f9c commit 254900a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions project.clj
Original file line number Diff line number Diff line change
@@ -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"]]}
Expand Down

0 comments on commit 254900a

Please sign in to comment.