v2.6.2
This commit is contained in:
parent
bc6d2a90e8
commit
0ff36540ff
3 changed files with 9 additions and 4 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
## v2.6.2 / 2014 Apr 10
|
||||||
|
|
||||||
|
Fix #46: broken support for Clojure <1.5.0 (@kul).
|
||||||
|
|
||||||
|
|
||||||
## v2.6.1 / 2014 Apr 8
|
## v2.6.1 / 2014 Apr 8
|
||||||
|
|
||||||
**CRITICAL FIX** for v2.6.0 released 9 days ago. **Please upgrade ASAP!**
|
**CRITICAL FIX** for v2.6.0 released 9 days ago. **Please upgrade ASAP!**
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contributing](#contact--contributing) | current ([semantic][]) version:
|
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contributing](#contact--contributing) | current ([semantic][]) version:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
[com.taoensso/nippy "2.6.1"] ; Stable (please upgrade from v2.6.0 ASAP)
|
[com.taoensso/nippy "2.6.2"] ; Stable (please upgrade from v2.6.0 ASAP)
|
||||||
```
|
```
|
||||||
|
|
||||||
v2.6 is a **major, backwards-compatible release** with: improved performance (incl. frozen data size), a new low-level DataInput/DataOuput API, improved support for headerless freezing, and 1-to-1 binary-value representation guarantees. See the [CHANGELOG][] for details.
|
v2.6 is a **major, backwards-compatible release** with: improved performance (incl. frozen data size), a new low-level DataInput/DataOuput API, improved support for headerless freezing, and 1-to-1 binary-value representation guarantees. See the [CHANGELOG][] for details.
|
||||||
|
|
@ -34,7 +34,7 @@ Nippy is an attempt to provide a reliable, high-performance **drop-in alternativ
|
||||||
Add the necessary dependency to your [Leiningen][] `project.clj` and `require` the library in your ns:
|
Add the necessary dependency to your [Leiningen][] `project.clj` and `require` the library in your ns:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
[com.taoensso/nippy "2.6.1"] ; project.clj
|
[com.taoensso/nippy "2.6.2"] ; project.clj
|
||||||
(ns my-app (:require [taoensso.nippy :as nippy])) ; ns
|
(ns my-app (:require [taoensso.nippy :as nippy])) ; ns
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
(defproject com.taoensso/nippy "2.6.1"
|
(defproject com.taoensso/nippy "2.6.2"
|
||||||
:author "Peter Taoussanis <https://www.taoensso.com>"
|
:author "Peter Taoussanis <https://www.taoensso.com>"
|
||||||
:description "Clojure serialization library"
|
:description "Clojure serialization library"
|
||||||
:url "https://github.com/ptaoussanis/nippy"
|
:url "https://github.com/ptaoussanis/nippy"
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
:dependencies
|
:dependencies
|
||||||
[[org.clojure/clojure "1.4.0"]
|
[[org.clojure/clojure "1.4.0"]
|
||||||
[org.clojure/tools.reader "0.8.3"]
|
[org.clojure/tools.reader "0.8.3"]
|
||||||
[com.taoensso/encore "1.1.0"]
|
[com.taoensso/encore "1.3.1"]
|
||||||
[org.iq80.snappy/snappy "0.3"]
|
[org.iq80.snappy/snappy "0.3"]
|
||||||
[org.tukaani/xz "1.5"]]
|
[org.tukaani/xz "1.5"]]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue