v2.6.0-beta1

This commit is contained in:
Peter Taoussanis 2014-02-24 01:42:25 +07:00
parent 54389cc3a0
commit 23feb9772f
3 changed files with 7 additions and 6 deletions

View file

@ -1,6 +1,6 @@
## v2.6.0-alpha4 / 2014 Feb 16
## v2.6.0-beta1 / 2014 Feb 23
> **WARNING**: This is an **EXPERIMENTAL early testing release** and **unsuitable for use in production**. Welcoming feedback on any issues, etc.!
> Welcoming feedback on any issues, etc.!
### New
@ -19,6 +19,7 @@
* **DEPRECATED**: `:legacy-mode` options. This was being used mainly for headerless freezing, so a new headerless mode is taking its place.
* Public utils now available for custom type extension: `write-bytes`, `write-biginteger`, `write-utf8`, `write-compact-long`, and respective readers.
* Now distinguish between `BigInteger` and `BigInt` on thawing (previously both thawed to `BigInt`s). (mlacorte).
* Moved most utils to external `encore` dependency.
## v2.5.2 / 2013 Dec 7

View file

@ -2,7 +2,7 @@
```clojure
[com.taoensso/nippy "2.5.2"] ; Stable
[com.taoensso/nippy "2.6.0-alpha4"] ; EXPERIMENTAL early testing release, unsuitable for production
[com.taoensso/nippy "2.6.0-beta1"] ; For early 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.

View file

@ -1,4 +1,4 @@
(defproject com.taoensso/nippy "2.6.0-alpha4"
(defproject com.taoensso/nippy "2.6.0-beta1"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Clojure serialization library"
:url "https://github.com/ptaoussanis/nippy"