Update README. Bump version number (breaking).

This commit is contained in:
Peter Taoussanis 2012-07-24 14:51:00 +07:00
parent 8bec62767d
commit 2937ce225d
2 changed files with 7 additions and 3 deletions

View file

@ -1,9 +1,13 @@
Current [semantic](http://semver.org/) version: Current [semantic](http://semver.org/) version:
```clojure ```clojure
[com.taoensso/nippy "0.9.2"] [com.taoensso/nippy "0.10.0"]
``` ```
**Breaking changes** (minor) since _0.9.x_:
* Affecting **users that were manually disabling compression**:
* API has changed for `freeze-to-bytes` and `thaw-from-bytes` _when not using default options_.
# Nippy, a serialization library for Clojure # Nippy, a serialization library for Clojure
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). 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).
@ -36,7 +40,7 @@ Nippy uses [Snappy](http://code.google.com/p/snappy-java/) which currently has a
Depend on Nippy in your `project.clj`: Depend on Nippy in your `project.clj`:
```clojure ```clojure
[com.taoensso/nippy "0.9.2"] [com.taoensso/nippy "0.10.0"]
``` ```
and `require` the library: and `require` the library:

View file

@ -1,4 +1,4 @@
(defproject com.taoensso/nippy "0.9.2" (defproject com.taoensso/nippy "0.10.0"
:description "Simple, high-performance Clojure serialization library." :description "Simple, high-performance 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"}