From 038ecc9abc002fa4d8ef2e9bd32e44e9f99ce1f1 Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Wed, 12 Sep 2012 00:26:09 +0700 Subject: [PATCH 1/2] Bump Snappy dependency (1.0.5-M1) This resolves the issue affecting JDK7 on OSX: https://github.com/ptaoussanis/carmine/issues/5 --- project.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.clj b/project.clj index 40d5bf4..3133a54 100644 --- a/project.clj +++ b/project.clj @@ -3,7 +3,7 @@ :url "https://github.com/ptaoussanis/nippy" :license {:name "Eclipse Public License"} :dependencies [[org.clojure/clojure "1.3.0"] - [org.xerial.snappy/snappy-java "1.0.4.1"]] + [org.xerial.snappy/snappy-java "1.0.5-M1"]] :profiles {:1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]} :1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]} :1.5 {:dependencies [[org.clojure/clojure "1.5.0-alpha3"]]} From 731fb4cd221f7b223ac00bbc8f09d0b8344342fd Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Wed, 12 Sep 2012 00:28:27 +0700 Subject: [PATCH 2/2] Bump version (minor) --- README.md | 4 ++-- project.clj | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fb82f9e..437ba18 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Current [semantic](http://semver.org/) version: ```clojure -[com.taoensso/nippy "0.10.1"] +[com.taoensso/nippy "0.10.2"] ``` **Breaking changes** since _0.9.x_: @@ -40,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.10.1"] +[com.taoensso/nippy "0.10.2"] ``` and `require` the library: diff --git a/project.clj b/project.clj index 3133a54..69195d2 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/nippy "0.10.1" +(defproject com.taoensso/nippy "0.10.2" :description "Simple, high-performance Clojure serialization library." :url "https://github.com/ptaoussanis/nippy" :license {:name "Eclipse Public License"}