This commit is contained in:
Peter Taoussanis 2013-10-03 21:21:59 +07:00
parent 167cfae7bf
commit 1b27c1be7a
4 changed files with 5 additions and 6 deletions

View file

@ -1,4 +1,4 @@
## v2.1.0 → v2.2.0-RC1 ## v2.1.0 → v2.2.0
* Dropped `:read-eval?`, `:print-dup?` options. * Dropped `:read-eval?`, `:print-dup?` options.
Thanks to James Reeves (weavejester) for these changes!: Thanks to James Reeves (weavejester) for these changes!:

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: **[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 ```clojure
[com.taoensso/nippy "2.2.0-RC1"] ; Development (see CHANGELOG for details) [com.taoensso/nippy "2.2.0"] ; Stable; see CHANGELOG for changes since 1.x
[com.taoensso/nippy "2.1.0"] ; 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. 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.
@ -36,7 +35,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: Add the necessary dependency to your [Leiningen](http://leiningen.org/) `project.clj` and `require` the library in your ns:
```clojure ```clojure
[com.taoensso/nippy "2.1.0"] ; project.clj [com.taoensso/nippy "2.2.0"] ; project.clj
(ns my-app (:require [taoensso.nippy :as nippy])) ; ns (ns my-app (:require [taoensso.nippy :as nippy])) ; ns
``` ```

View file

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

View file

@ -113,4 +113,4 @@
(println (bench* (roundtrip data))) ; Snappy implementations (println (bench* (roundtrip data))) ; Snappy implementations
;; {:no-snappy [6163 6064 6042 6176] :JNI [6489 6446 6542 6412] ;; {:no-snappy [6163 6064 6042 6176] :JNI [6489 6446 6542 6412]
;; :native-array-copy [6569 6419 6414 6590]} ;; :native-array-copy [6569 6419 6414 6590]}
) )