Skip to content

Commit e8edba1

Browse files
committed
v2.9.1
1 parent b42aff9 commit e8edba1

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
22
3-
## v2.9.0 / 2015 June 1
3+
## v2.9.1 / 2015 Sep 14
4+
5+
> This is a hotfix release with an **important fix** for Nippy encryption users
6+
7+
* **Fix**: broken encryption thread-safety [#68]
8+
9+
```clojure
10+
[com.taoensso/nippy "2.9.1"]
11+
```
12+
13+
14+
## v2.9.0 / 2015 Jun 1
415

516
> This is a major, **non-breaking** release that improves performance and makes thawing more resilient to certain failures. Identical to **v2.9.0-RC3**.
617

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:
22

33
```clojure
4-
[com.taoensso/nippy "2.9.0"] ; Stable, see CHANGELOG for details
4+
[com.taoensso/nippy "2.9.1"] ; Stable, see CHANGELOG for details
55
```
66

77
# Nippy, a Clojure serialization library
@@ -29,7 +29,7 @@ Nippy is an attempt to provide a reliable, high-performance **drop-in alternativ
2929
Add the necessary dependency to your [Leiningen][] `project.clj` and `require` the library in your ns:
3030

3131
```clojure
32-
[com.taoensso/nippy "2.9.0"] ; project.clj
32+
[com.taoensso/nippy "2.9.1"] ; project.clj
3333
(ns my-app (:require [taoensso.nippy :as nippy])) ; ns
3434
```
3535

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso/nippy "2.9.0"
1+
(defproject com.taoensso/nippy "2.9.1"
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)