v2.6.0-RC1

This commit is contained in:
Peter Taoussanis 2014-03-12 12:13:34 +07:00
parent 66333155c9
commit 7cd4a39e80
3 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
## v2.6.0-beta2 / 2014 Feb 26 ## v2.6.0-RC1 / 2014 Mar 12
> Welcoming feedback on any issues, etc.! > Welcoming feedback on any issues, etc.!

View file

@ -2,7 +2,7 @@
```clojure ```clojure
[com.taoensso/nippy "2.5.2"] ; Stable [com.taoensso/nippy "2.5.2"] ; Stable
[com.taoensso/nippy "2.6.0-beta2"] ; For early adopters [com.taoensso/nippy "2.6.0-RC1"] ; Appropriate for staging, early production adopters
``` ```
v2.6 will be a backwards-compatible release with: improved performance (incl. frozen data size), a new low-level DataInput/DataOuput API, improved support for headerless freezing, and 1-to-1 binary-value representation guarantees. See the [Changelog](https://github.com/ptaoussanis/nippy/blob/master/CHANGELOG.md) for details. v2.6 will be a backwards-compatible release with: improved performance (incl. frozen data size), a new low-level DataInput/DataOuput API, improved support for headerless freezing, and 1-to-1 binary-value representation guarantees. See the [Changelog](https://github.com/ptaoussanis/nippy/blob/master/CHANGELOG.md) for details.

View file

@ -1,4 +1,4 @@
(defproject com.taoensso/nippy "2.6.0-beta2" (defproject com.taoensso/nippy "2.6.0-RC1"
:author "Peter Taoussanis <https://www.taoensso.com>" :author "Peter Taoussanis <https://www.taoensso.com>"
:description "Clojure serialization library" :description "Clojure serialization library"
:url "https://github.com/ptaoussanis/nippy" :url "https://github.com/ptaoussanis/nippy"
@ -12,7 +12,7 @@
:dependencies :dependencies
[[org.clojure/clojure "1.4.0"] [[org.clojure/clojure "1.4.0"]
[org.clojure/tools.reader "0.8.3"] [org.clojure/tools.reader "0.8.3"]
[com.taoensso/encore "0.9.2"] [com.taoensso/encore "0.9.8"]
[org.iq80.snappy/snappy "0.3"] [org.iq80.snappy/snappy "0.3"]
[org.tukaani/xz "1.4"]] [org.tukaani/xz "1.4"]]