v2.5.0-beta3

This commit is contained in:
Peter Taoussanis 2013-11-06 13:12:41 +07:00
parent da1622f271
commit df4925aa3b
3 changed files with 3 additions and 2 deletions

View file

@ -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

View file

@ -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.

View file

@ -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"