diff --git a/README.md b/README.md index c43f5e0..0f37072 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ **[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 "1.2.1"] ; Stable [com.taoensso/nippy "2.0.0-RC1"] ; Development (notes below) +[com.taoensso/nippy "1.2.1"] ; 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. @@ -33,7 +33,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 "1.2.1"] ; project.clj +[com.taoensso/nippy "2.0.0-RC1"] ; project.clj (ns my-app (:require [taoensso.nippy :as nippy])) ; ns ``` diff --git a/project.clj b/project.clj index 5404c04..5a5d41a 100644 --- a/project.clj +++ b/project.clj @@ -4,21 +4,22 @@ :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.4.0"] - [expectations "1.4.48"] + [expectations "1.4.49"] [org.iq80.snappy/snappy "0.3"]] :profiles {:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]} :1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0-master-SNAPSHOT"]]} :dev {:dependencies []} - :test {:dependencies [[org.xerial.snappy/snappy-java "1.0.5-M3"]]} + :test {:dependencies [[org.xerial.snappy/snappy-java "1.0.5"]]} :bench {:dependencies [] :jvm-opts ^:replace ["-server"]}} :aliases {"test-all" ["with-profile" "test,1.4:test,1.5:test,1.6" "expectations"] "test-auto" ["with-profile" "test" "autoexpect"] "start-dev" ["with-profile" "dev,test,bench" "repl" ":headless"] "start-bench" ["trampoline" "start-dev"] "codox" ["with-profile" "test" "doc"]} - :plugins [[lein-expectations "0.0.7"] + :plugins [[lein-expectations "0.0.8"] [lein-autoexpect "0.2.5"] + [lein-ancient "0.4.2"] [codox "0.6.4"]] :min-lein-version "2.0.0" :global-vars {*warn-on-reflection* true}