Skip to content

Commit dd40f67

Browse files
committed
v2.6.3
1 parent 3c8661a commit dd40f67

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1+
## v2.6.3 / 2014 Apr 29
2+
3+
* Fix #48: broken freeze/thaw identity for empty lazy seqs (@vgeshel).
4+
5+
16
## v2.6.2 / 2014 Apr 10
27

3-
Fix #46: broken support for Clojure <1.5.0 (@kul).
8+
* Fix #46: broken support for Clojure <1.5.0 (@kul).
49

510

611
## v2.6.1 / 2014 Apr 8

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contributing](#contact--contributing) | current ([semantic][]) version:
22

33
```clojure
4-
[com.taoensso/nippy "2.6.2"] ; Stable (please upgrade from v2.6.0 ASAP)
4+
[com.taoensso/nippy "2.6.3"] ; Stable (please upgrade from v2.6.0 ASAP)
55
```
66

77
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
3434
Add the necessary dependency to your [Leiningen][] `project.clj` and `require` the library in your ns:
3535

3636
```clojure
37-
[com.taoensso/nippy "2.6.2"] ; project.clj
37+
[com.taoensso/nippy "2.6.3"] ; project.clj
3838
(ns my-app (:require [taoensso.nippy :as nippy])) ; ns
3939
```
4040

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso/nippy "2.6.2"
1+
(defproject com.taoensso/nippy "2.6.3"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "Clojure serialization library"
44
:url "https://github.com/ptaoussanis/nippy"

0 commit comments

Comments
 (0)