From c130e41d58371290a170b8146c446d3a1ab07f99 Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Mon, 18 Nov 2013 14:09:03 +0700 Subject: [PATCH] v2.5.0 --- CHANGELOG.md | 2 +- README.md | 5 ++--- project.clj | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a374fbbe..eed2d81f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## v2.4.1 → v2.5.0-RC2 +## v2.4.1 → v2.5.0 * Refactored standard Freezable protocol implementations to de-emphasise interfaces as a matter of hygiene, Ref. http://goo.gl/IFXzvh. * BETA STATUS: Added an additional (pre-Reader) Serializable fallback. This should greatly extend the number of out-the-box-serializable types. * ISeq is now used as a fallback for non-concrete seq types, giving better type matching pre/post freeze for things like LazySeqs, etc. diff --git a/README.md b/README.md index ea166ef8..2dda2114 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.5.0-RC2"] ; Development; see CHANGELOG for details -[com.taoensso/nippy "2.4.1"] ; Stable +[com.taoensso/nippy "2.5.0"] ; Stable ``` # Nippy, a Clojure serialization library @@ -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.5.0-RC2"] ; project.clj +[com.taoensso/nippy "2.5.0"] ; project.clj (ns my-app (:require [taoensso.nippy :as nippy])) ; ns ``` diff --git a/project.clj b/project.clj index 6e187da2..6e02e7fd 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/nippy "2.5.0-RC2" +(defproject com.taoensso/nippy "2.5.0" :description "Clojure serialization library" :url "https://github.com/ptaoussanis/nippy" :license {:name "Eclipse Public License"