From 23feb9772fc2c4896a2ef34a61e7bd88d99f387c Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Mon, 24 Feb 2014 01:42:25 +0700 Subject: [PATCH] v2.6.0-beta1 --- CHANGELOG.md | 7 ++++--- README.md | 4 ++-- project.clj | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4645ab5..4baf99d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -110,4 +111,4 @@ ;; an alternative Encryptor implementing the appropriate protocol ``` - See the [README](https://github.com/ptaoussanis/nippy#encryption-currently-in-alpha) for an example using encryption. \ No newline at end of file + See the [README](https://github.com/ptaoussanis/nippy#encryption-currently-in-alpha) for an example using encryption. diff --git a/README.md b/README.md index 8bc3af7..24f2a3d 100644 --- a/README.md +++ b/README.md @@ -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. @@ -177,4 +177,4 @@ Copyright © 2012-2014 Peter Taoussanis. Distributed under the [Eclipse Publ [issues page]: [commit history]: [taoensso.com]: -[Eclipse Public License]: \ No newline at end of file +[Eclipse Public License]: diff --git a/project.clj b/project.clj index 0a225c0..850ad69 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/nippy "2.6.0-alpha4" +(defproject com.taoensso/nippy "2.6.0-beta1" :author "Peter Taoussanis " :description "Clojure serialization library" :url "https://github.com/ptaoussanis/nippy"