diff --git a/CHANGELOG.md b/CHANGELOG.md index c64ac27..fe2c732 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## v1.2.1 → v2.0.0-RC1 +## v1.2.1 → v2.0.0 * Refactored for huge performance improvements (~40% roundtrip time). * New header format for better error messages. * New `taoensso.nippy.tools` ns for easier integration with 3rd-party tools. @@ -34,4 +34,4 @@ [Taoensso libs]: https://www.taoensso.com/clojure-libraries [Nippy GitHub]: https://github.com/ptaoussanis/nippy [Nippy CHANGELOG]: https://github.com/ptaoussanis/carmine/blob/master/CHANGELOG.md -[Nippy API docs]: http://ptaoussanis.github.io/nippy \ No newline at end of file +[Nippy API docs]: http://ptaoussanis.github.io/nippy diff --git a/README.md b/README.md index 7bd7762..2a7abad 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,7 @@ **[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 "2.0.0-RC1"] ; Development (notes below) -[com.taoensso/nippy "1.2.1"] ; Stable +[com.taoensso/nippy "2.0.0"] ; See CHANGELOG for changes since 1.x ``` 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 +32,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 "2.0.0-RC1"] ; project.clj +[com.taoensso/nippy "2.0.0"] ; project.clj (ns my-app (:require [taoensso.nippy :as nippy])) ; ns ``` diff --git a/project.clj b/project.clj index 5a5d41a..73f4592 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/nippy "2.0.0-RC1" +(defproject com.taoensso/nippy "2.0.0" :description "Clojure serialization library" :url "https://github.com/ptaoussanis/nippy" :license {:name "Eclipse Public License" @@ -31,4 +31,4 @@ "sonatype-snapshots" {:url "http://oss.sonatype.org/content/repositories/snapshots" :snapshots true - :releases {:checksum :fail :update :always}}}) \ No newline at end of file + :releases {:checksum :fail :update :always}}})