v2.9.1
This commit is contained in:
parent
b42aff9cc9
commit
e8edba1493
3 changed files with 15 additions and 4 deletions
13
CHANGELOG.md
13
CHANGELOG.md
|
|
@ -1,6 +1,17 @@
|
|||
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
|
||||
|
||||
## v2.9.0 / 2015 June 1
|
||||
## v2.9.1 / 2015 Sep 14
|
||||
|
||||
> This is a hotfix release with an **important fix** for Nippy encryption users
|
||||
|
||||
* **Fix**: broken encryption thread-safety [#68]
|
||||
|
||||
```clojure
|
||||
[com.taoensso/nippy "2.9.1"]
|
||||
```
|
||||
|
||||
|
||||
## v2.9.0 / 2015 Jun 1
|
||||
|
||||
> This is a major, **non-breaking** release that improves performance and makes thawing more resilient to certain failures. Identical to **v2.9.0-RC3**.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:
|
||||
|
||||
```clojure
|
||||
[com.taoensso/nippy "2.9.0"] ; Stable, see CHANGELOG for details
|
||||
[com.taoensso/nippy "2.9.1"] ; Stable, see CHANGELOG for details
|
||||
```
|
||||
|
||||
# Nippy, a Clojure serialization library
|
||||
|
|
@ -29,7 +29,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:
|
||||
|
||||
```clojure
|
||||
[com.taoensso/nippy "2.9.0"] ; project.clj
|
||||
[com.taoensso/nippy "2.9.1"] ; project.clj
|
||||
(ns my-app (:require [taoensso.nippy :as nippy])) ; ns
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
(defproject com.taoensso/nippy "2.9.0"
|
||||
(defproject com.taoensso/nippy "2.9.1"
|
||||
:author "Peter Taoussanis <https://www.taoensso.com>"
|
||||
:description "Clojure serialization library"
|
||||
:url "https://github.com/ptaoussanis/nippy"
|
||||
|
|
|
|||
Loading…
Reference in a new issue