This commit is contained in:
Peter Taoussanis 2013-07-22 23:44:37 +07:00
parent 8414b9b0b5
commit d4260167e5
3 changed files with 6 additions and 7 deletions

View file

@ -1,4 +1,4 @@
## v1.2.1 → v2.0.0-RC1
## v1.2.1 → v2.0.0
* Refactored for huge performance improvements (~40% roundtrip time).
* New header format for better error messages.
* New `taoensso.nippy.tools` ns for easier integration with 3rd-party tools.

View file

@ -1,8 +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.0.0-RC1"] ; Development (notes below)
[com.taoensso/nippy "1.2.1"] ; Stable
[com.taoensso/nippy "2.0.0"] ; See CHANGELOG for changes since 1.x
```
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.
@ -33,7 +32,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.0.0-RC1"] ; project.clj
[com.taoensso/nippy "2.0.0"] ; project.clj
(ns my-app (:require [taoensso.nippy :as nippy])) ; ns
```

View file

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