v2.5.0-beta3
This commit is contained in:
parent
da1622f271
commit
df4925aa3b
3 changed files with 3 additions and 2 deletions
|
|
@ -2,6 +2,7 @@
|
||||||
* Refactored standard Freezable protocol implementations to de-emphasise interfaces as a matter of hygiene, Ref. http://goo.gl/IFXzvh.
|
* 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.
|
* 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.
|
* 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
|
## v2.3.0 → v2.4.1
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
[com.taoensso/nippy "2.4.1"] ; Stable; see CHANGELOG for changes since 1.x
|
[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.
|
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.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
(defproject com.taoensso/nippy "2.5.0-beta2"
|
(defproject com.taoensso/nippy "2.5.0-beta3"
|
||||||
:description "Clojure serialization library"
|
:description "Clojure serialization library"
|
||||||
:url "https://github.com/ptaoussanis/nippy"
|
:url "https://github.com/ptaoussanis/nippy"
|
||||||
:license {:name "Eclipse Public License"
|
:license {:name "Eclipse Public License"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue