Skip to content

Commit e57057e

Browse files
committed
v2.13.0
1 parent ded6cc0 commit e57057e

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +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.13.0 / 2017 Feb 13
4+
5+
```clojure
6+
[com.taoensso/nippy "2.13.0"]
7+
```
8+
9+
> This is a minor, non-breaking maintenance release.
10+
11+
* [#91] **New**: Add `freeze-to-file` and `thaw-from-file` utils (@Engelberg)
12+
* [#85] *Impl*: Lazily create LZ4 instance, fixes issue with Google App Engine
13+
* **Impl**: Bump 1-byte cacheable types from 5->8
14+
315
## v2.13.0-RC1 / 2016 Dec 17
416

517
```clojure
@@ -8,8 +20,8 @@
820

921
> This should be a minor, non-breaking release.
1022
11-
* [#85] *Impl*: Lazily create LZ4 instance, fixes issue with Google App Engine
12-
* *Impl*: Bump 1-byte cacheable types from 5->8
23+
* [#85] **Impl**: Lazily create LZ4 instance, fixes issue with Google App Engine
24+
* **Impl**: Bump 1-byte cacheable types from 5->8
1325

1426
## v2.12.2 / 2016 Aug 23
1527

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
**[CHANGELOG]** | [API] | current [Break Version]:
55

66
```clojure
7-
[com.taoensso/nippy "2.12.2"] ; Stable
8-
[com.taoensso/nippy "2.13.0-RC1"] ; Please see CHANGELOG for details
7+
[com.taoensso/nippy "2.13.0"] ; Please see CHANGELOG for details
98
```
109

1110
> Please consider helping to [support my continued open-source Clojure/Script work]?
@@ -39,7 +38,7 @@ Nippy is an attempt to provide a reliable, high-performance **drop-in alternativ
3938
Add the necessary dependency to your project:
4039

4140
```clojure
42-
[com.taoensso/nippy "2.12.2"]
41+
[com.taoensso/nippy "2.13.0"]
4342
```
4443

4544
And setup your namespace imports:

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.13.0-RC1"
1+
(defproject com.taoensso/nippy "2.13.0"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "High-performance serialization library for Clojure"
44
:url "https://github.com/ptaoussanis/nippy"

0 commit comments

Comments
 (0)