v2.5.0-RC2

This commit is contained in:
Peter Taoussanis 2013-11-07 12:48:14 +07:00
parent 0fd9275e37
commit 08e28748be
3 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
## v2.4.1 → v2.5.0-RC1
## v2.4.1 → v2.5.0-RC2
* 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.

View file

@ -1,7 +1,7 @@
**[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.5.0-RC1"] ; Development; see CHANGELOG for details
[com.taoensso/nippy "2.5.0-RC2"] ; Development; see CHANGELOG for details
[com.taoensso/nippy "2.4.1"] ; Stable
```
@ -33,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.5.0-RC1"] ; project.clj
[com.taoensso/nippy "2.5.0-RC2"] ; project.clj
(ns my-app (:require [taoensso.nippy :as nippy])) ; ns
```

View file

@ -1,4 +1,4 @@
(defproject com.taoensso/nippy "2.5.0-RC1"
(defproject com.taoensso/nippy "2.5.0-RC2"
:description "Clojure serialization library"
:url "https://github.com/ptaoussanis/nippy"
:license {:name "Eclipse Public License"