From 360e4a77bdaebc0c2c71d23f6e9493dc508a5856 Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Wed, 6 Nov 2013 20:55:14 +0700 Subject: [PATCH] v2.5.0-RC1 --- CHANGELOG.md | 2 +- README.md | 13 +++---------- project.clj | 2 +- 3 files changed, 5 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c43097..bb68fd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## v2.4.1 → v2.5.0-beta2 +## v2.4.1 → v2.5.0-RC1 * 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. * ISeq is now used as a fallback for non-concrete seq types, giving better type matching pre/post freeze for things like LazySeqs, etc. diff --git a/README.md b/README.md index 0a7d751..5885565 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,10 @@ **[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.4.1"] ; Stable; see CHANGELOG for changes since 1.x -[com.taoensso/nippy "2.5.0-beta3"] ; Development; adds Serializable fallback +[com.taoensso/nippy "2.5.0-RC1"] ; Development; see CHANGELOG for details +[com.taoensso/nippy "2.4.1"] ; 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. - - * **BREAKING**: Nothing (but please test first). - * **DEPRECATED**: `freeze-to-bytes`->`freeze`, `thaw-from-bytes`->`thaw`. - -**Migration note**: Please be sure to use `lein clean` to clear old (v1) build artifacts! - # Nippy, a Clojure serialization library Clojure's [rich data types](http://clojure.org/datatypes) are *awesome*. And its [reader](http://clojure.org/reader) allows you to take your data just about anywhere. But the reader can be painfully slow when you've got a lot of data to crunch (like when you're serializing to a database). @@ -40,7 +33,7 @@ Nippy is an attempt to provide a reliable, high-performance **drop-in alternativ Add the necessary dependency to your [Leiningen](http://leiningen.org/) `project.clj` and `require` the library in your ns: ```clojure -[com.taoensso/nippy "2.4.1"] ; project.clj +[com.taoensso/nippy "2.5.0-RC1"] ; project.clj (ns my-app (:require [taoensso.nippy :as nippy])) ; ns ``` diff --git a/project.clj b/project.clj index b28878c..5fe5ac0 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/nippy "2.5.0-beta3" +(defproject com.taoensso/nippy "2.5.0-RC1" :description "Clojure serialization library" :url "https://github.com/ptaoussanis/nippy" :license {:name "Eclipse Public License"