diff --git a/CHANGELOG.md b/CHANGELOG.md index bb68fd4..a374fbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## v2.4.1 → v2.5.0-RC1 +## v2.4.1 → v2.5.0-RC2 * Refactored standard Freezable protocol implementations to de-emphasise interfaces as a matter of hygiene, Ref. http://goo.gl/IFXzvh. * BETA STATUS: Added an additional (pre-Reader) Serializable fallback. This should greatly extend the number of out-the-box-serializable types. * ISeq is now used as a fallback for non-concrete seq types, giving better type matching pre/post freeze for things like LazySeqs, etc. diff --git a/README.md b/README.md index 5885565..ea166ef 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ **[API docs](http://ptaoussanis.github.io/nippy/)** | **[CHANGELOG](https://github.com/ptaoussanis/nippy/blob/master/CHANGELOG.md)** | [contact & contributing](#contact--contributing) | [other Clojure libs](https://www.taoensso.com/clojure-libraries) | [Twitter](https://twitter.com/#!/ptaoussanis) | current [semantic](http://semver.org/) version: ```clojure -[com.taoensso/nippy "2.5.0-RC1"] ; Development; see CHANGELOG for details +[com.taoensso/nippy "2.5.0-RC2"] ; Development; see CHANGELOG for details [com.taoensso/nippy "2.4.1"] ; Stable ``` @@ -33,7 +33,7 @@ Nippy is an attempt to provide a reliable, high-performance **drop-in alternativ Add the necessary dependency to your [Leiningen](http://leiningen.org/) `project.clj` and `require` the library in your ns: ```clojure -[com.taoensso/nippy "2.5.0-RC1"] ; project.clj +[com.taoensso/nippy "2.5.0-RC2"] ; project.clj (ns my-app (:require [taoensso.nippy :as nippy])) ; ns ``` diff --git a/project.clj b/project.clj index 5fe5ac0..fe42f20 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/nippy "2.5.0-RC1" +(defproject com.taoensso/nippy "2.5.0-RC2" :description "Clojure serialization library" :url "https://github.com/ptaoussanis/nippy" :license {:name "Eclipse Public License"