v2.2.0-RC1
This commit is contained in:
parent
08f2cb1273
commit
f579f0f1a6
3 changed files with 12 additions and 2 deletions
|
|
@ -1,3 +1,12 @@
|
|||
## v2.1.0 → v2.2.0-RC1
|
||||
* Dropped `:read-eval?`, `:print-dup?` options.
|
||||
|
||||
Thanks to James Reeves (weavejester) for these changes!:
|
||||
* Switched to `tools.reader.edn` for safer reader fallback.
|
||||
* Added fast binary serialization for Date and UUID types.
|
||||
* Added fast binary serialization for record types.
|
||||
|
||||
|
||||
## v2.0.0 → v2.1.0
|
||||
* Exposed low-level fns: `freeze-to-stream!`, `thaw-from-stream!`.
|
||||
* Added `extend-freeze` and `extend-thaw` for extending to custom types:
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
**[API docs](http://ptaoussanis.github.io/nippy/)** | **[CHANGELOG](https://github.com/ptaoussanis/nippy/blob/master/CHANGELOG.md)** | [contact & contributing](#contact--contributing) | [other Clojure libs](https://www.taoensso.com/clojure-libraries) | [Twitter](https://twitter.com/#!/ptaoussanis) | current [semantic](http://semver.org/) version:
|
||||
|
||||
```clojure
|
||||
[com.taoensso/nippy "2.1.0"] ; See CHANGELOG for changes since 1.x
|
||||
[com.taoensso/nippy "2.2.0-RC1"] ; Development (see CHANGELOG for details)
|
||||
[com.taoensso/nippy "2.1.0"] ; Stable
|
||||
```
|
||||
|
||||
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.1.0"
|
||||
(defproject com.taoensso/nippy "2.2.0-RC1"
|
||||
:description "Clojure serialization library"
|
||||
:url "https://github.com/ptaoussanis/nippy"
|
||||
:license {:name "Eclipse Public License"
|
||||
|
|
|
|||
Loading…
Reference in a new issue