diff --git a/CHANGELOG.md b/CHANGELOG.md index 9812a75..3c63a93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ -## v2.4.1 → v2.5.0-beta1 +## v2.4.1 → v2.5.0-beta2 * 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. ## v2.3.0 → v2.4.1 diff --git a/README.md b/README.md index c6e7348..84cae86 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ```clojure [com.taoensso/nippy "2.4.1"] ; Stable; see CHANGELOG for changes since 1.x -[com.taoensso/nippy "2.5.0-beta1"] ; Development; adds Serializable fallback +[com.taoensso/nippy "2.5.0-beta2"] ; Development; adds Serializable fallback ``` v2 adds pluggable compression, crypto support (also pluggable), an improved API (including much better error messages), easier integration into other tools/libraries, and hugely improved performance. diff --git a/project.clj b/project.clj index 223ad52..33efe3f 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/nippy "2.5.0-beta1" +(defproject com.taoensso/nippy "2.5.0-beta2" :description "Clojure serialization library" :url "https://github.com/ptaoussanis/nippy" :license {:name "Eclipse Public License"