This commit is contained in:
Peter Taoussanis 2013-07-22 23:44:37 +07:00
parent 8414b9b0b5
commit d4260167e5
3 changed files with 6 additions and 7 deletions

View file

@ -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). * Refactored for huge performance improvements (~40% roundtrip time).
* New header format for better error messages. * New header format for better error messages.
* New `taoensso.nippy.tools` ns for easier integration with 3rd-party tools. * New `taoensso.nippy.tools` ns for easier integration with 3rd-party tools.
@ -34,4 +34,4 @@
[Taoensso libs]: https://www.taoensso.com/clojure-libraries [Taoensso libs]: https://www.taoensso.com/clojure-libraries
[Nippy GitHub]: https://github.com/ptaoussanis/nippy [Nippy GitHub]: https://github.com/ptaoussanis/nippy
[Nippy CHANGELOG]: https://github.com/ptaoussanis/carmine/blob/master/CHANGELOG.md [Nippy CHANGELOG]: https://github.com/ptaoussanis/carmine/blob/master/CHANGELOG.md
[Nippy API docs]: http://ptaoussanis.github.io/nippy [Nippy API docs]: http://ptaoussanis.github.io/nippy

View file

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

View file

@ -1,4 +1,4 @@
(defproject com.taoensso/nippy "2.0.0-RC1" (defproject com.taoensso/nippy "2.0.0"
:description "Clojure serialization library" :description "Clojure serialization library"
:url "https://github.com/ptaoussanis/nippy" :url "https://github.com/ptaoussanis/nippy"
:license {:name "Eclipse Public License" :license {:name "Eclipse Public License"
@ -31,4 +31,4 @@
"sonatype-snapshots" "sonatype-snapshots"
{:url "http://oss.sonatype.org/content/repositories/snapshots" {:url "http://oss.sonatype.org/content/repositories/snapshots"
:snapshots true :snapshots true
:releases {:checksum :fail :update :always}}}) :releases {:checksum :fail :update :always}}})