From df4925aa3b25d7f2c217fdfd21d18a9f1ebbb1f4 Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Wed, 6 Nov 2013 13:12:41 +0700 Subject: [PATCH] v2.5.0-beta3 --- CHANGELOG.md | 1 + README.md | 2 +- project.clj | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c63a93..7c43097 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ * 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. + * Experimental: add `Compressable-LZMA2` type & (replaceable) de/serializer. ## v2.3.0 → v2.4.1 diff --git a/README.md b/README.md index 84cae86..0a7d751 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-beta2"] ; Development; adds Serializable fallback +[com.taoensso/nippy "2.5.0-beta3"] ; 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 33efe3f..2cd5e56 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/nippy "2.5.0-beta2" +(defproject com.taoensso/nippy "2.5.0-beta3" :description "Clojure serialization library" :url "https://github.com/ptaoussanis/nippy" :license {:name "Eclipse Public License"