From 2937ce225dbee722664fb3036cfa31f9bdce2b6b Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Tue, 24 Jul 2012 14:51:00 +0700 Subject: [PATCH] Update README. Bump version number (breaking). --- README.md | 8 ++++++-- project.clj | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2058aeb..7aef8fb 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,13 @@ Current [semantic](http://semver.org/) version: ```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 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`: ```clojure -[com.taoensso/nippy "0.9.2"] +[com.taoensso/nippy "0.10.0"] ``` and `require` the library: diff --git a/project.clj b/project.clj index 746d8c0..e92da22 100644 --- a/project.clj +++ b/project.clj @@ -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." :url "https://github.com/ptaoussanis/nippy" :license {:name "Eclipse Public License"}