Bump non-core deps

This commit is contained in:
Peter Taoussanis 2013-07-09 13:25:49 +07:00
parent 93ef118e80
commit 52dea4dff8
2 changed files with 6 additions and 5 deletions

View file

@ -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: **[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 "1.2.1"] ; Stable
[com.taoensso/nippy "2.0.0-RC1"] ; Development (notes below) [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. 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: Add the necessary dependency to your [Leiningen](http://leiningen.org/) `project.clj` and `require` the library in your ns:
```clojure ```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 (ns my-app (:require [taoensso.nippy :as nippy])) ; ns
``` ```

View file

@ -4,21 +4,22 @@
:license {:name "Eclipse Public License" :license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"} :url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.4.0"] :dependencies [[org.clojure/clojure "1.4.0"]
[expectations "1.4.48"] [expectations "1.4.49"]
[org.iq80.snappy/snappy "0.3"]] [org.iq80.snappy/snappy "0.3"]]
:profiles {:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]} :profiles {:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]} :1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0-master-SNAPSHOT"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0-master-SNAPSHOT"]]}
:dev {:dependencies []} :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"]}} :bench {:dependencies [] :jvm-opts ^:replace ["-server"]}}
:aliases {"test-all" ["with-profile" "test,1.4:test,1.5:test,1.6" "expectations"] :aliases {"test-all" ["with-profile" "test,1.4:test,1.5:test,1.6" "expectations"]
"test-auto" ["with-profile" "test" "autoexpect"] "test-auto" ["with-profile" "test" "autoexpect"]
"start-dev" ["with-profile" "dev,test,bench" "repl" ":headless"] "start-dev" ["with-profile" "dev,test,bench" "repl" ":headless"]
"start-bench" ["trampoline" "start-dev"] "start-bench" ["trampoline" "start-dev"]
"codox" ["with-profile" "test" "doc"]} "codox" ["with-profile" "test" "doc"]}
:plugins [[lein-expectations "0.0.7"] :plugins [[lein-expectations "0.0.8"]
[lein-autoexpect "0.2.5"] [lein-autoexpect "0.2.5"]
[lein-ancient "0.4.2"]
[codox "0.6.4"]] [codox "0.6.4"]]
:min-lein-version "2.0.0" :min-lein-version "2.0.0"
:global-vars {*warn-on-reflection* true} :global-vars {*warn-on-reflection* true}