From 63f09f741584ac7bc972c58029c1017f43a2257b Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Thu, 24 Oct 2013 14:01:35 +0700 Subject: [PATCH] v2.5.0-beta1 --- CHANGELOG.md | 5 +++++ README.md | 2 ++ project.clj | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad584a5..b1d551c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v2.4.1 → v2.5.0-beta1 + * Refactored standard Freezable protocol implementations to de-emphasise interfaces as a matter of hygiene, Ref. http://goo.gl/IFXzvh. + * BETA STATUS: Added an addition (pre-Reader) Serializable fallback. This should greatly extend the number of out-the-box-serializable types. + + ## v2.3.0 → v2.4.1 * Added (alpha) LZMA2 (high-ratio) compressor. * Bump tools.reader dependency to 0.7.9. diff --git a/README.md b/README.md index 7f10b79..a9591c2 100644 --- a/README.md +++ b/README.md @@ -2,6 +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 ``` 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. @@ -22,6 +23,7 @@ Nippy is an attempt to provide a reliable, high-performance **drop-in alternativ * **Great performance**. * Comprehesive **support for all standard data types**. * **Easily extendable to custom data types**. (v2.1+) + * Java's **Serializable** fallback when available. (v2.5+) * **Reader-fallback** for all other types (including Clojure 1.4+ tagged literals). * **Full test coverage** for every supported type. * Fully pluggable **compression**, including built-in high-performance [Snappy](http://code.google.com/p/snappy/) compressor. diff --git a/project.clj b/project.clj index 99901fa..223ad52 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/nippy "2.4.1" +(defproject com.taoensso/nippy "2.5.0-beta1" :description "Clojure serialization library" :url "https://github.com/ptaoussanis/nippy" :license {:name "Eclipse Public License"