From 823dd94d7126b41c2b42eaceaae7cc511fd93ba7 Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Tue, 25 Jun 2013 14:49:03 +0700 Subject: [PATCH] RC1, add Clojure 1.6 test --- README.md | 4 ++-- project.clj | 23 +++++++++++++++-------- 2 files changed, 17 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f44f779..247aeb5 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ **[API docs](http://ptaoussanis.github.io/nippy/)** | [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-beta2"] ; Development (notes below) +[com.taoensso/nippy "1.2.1"] ; Stable +[com.taoensso/nippy "2.0.0-RC1"] ; Development (notes below) ``` 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. diff --git a/project.clj b/project.clj index 29b02d7..531258d 100644 --- a/project.clj +++ b/project.clj @@ -1,20 +1,18 @@ -(defproject com.taoensso/nippy "2.0.0-beta2" +(defproject com.taoensso/nippy "2.0.0-RC1" :description "Clojure serialization library" :url "https://github.com/ptaoussanis/nippy" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.4.0"] [expectations "1.4.43"] - [org.iq80.snappy/snappy "0.3"] - ;; [cc.qbits/grease "0.2.1"] - ] + [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"]]} - :bench {:dependencies [] - :jvm-opts ["-server" "-XX:+UseCompressedOops"]}} - :aliases {"test-all" ["with-profile" "test,1.4:test,1.5" "expectations"] + :bench {:dependencies [] :jvm-opts ["-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"]} @@ -22,4 +20,13 @@ [lein-autoexpect "0.2.5"] [codox "0.6.4"]] :min-lein-version "2.0.0" - :warn-on-reflection true) + :warn-on-reflection true + :repositories + {"sonatype" + {:url "http://oss.sonatype.org/content/repositories/releases" + :snapshots false + :releases {:checksum :fail}} + "sonatype-snapshots" + {:url "http://oss.sonatype.org/content/repositories/snapshots" + :snapshots true + :releases {:checksum :fail :update :always}}}) \ No newline at end of file