v2.13.0
This commit is contained in:
parent
ded6cc034f
commit
e57057e6c4
3 changed files with 17 additions and 6 deletions
16
CHANGELOG.md
16
CHANGELOG.md
|
|
@ -1,5 +1,17 @@
|
||||||
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
|
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
|
||||||
|
|
||||||
|
## v2.13.0 / 2017 Feb 13
|
||||||
|
|
||||||
|
```clojure
|
||||||
|
[com.taoensso/nippy "2.13.0"]
|
||||||
|
```
|
||||||
|
|
||||||
|
> This is a minor, non-breaking maintenance release.
|
||||||
|
|
||||||
|
* [#91] **New**: Add `freeze-to-file` and `thaw-from-file` utils (@Engelberg)
|
||||||
|
* [#85] *Impl*: Lazily create LZ4 instance, fixes issue with Google App Engine
|
||||||
|
* **Impl**: Bump 1-byte cacheable types from 5->8
|
||||||
|
|
||||||
## v2.13.0-RC1 / 2016 Dec 17
|
## v2.13.0-RC1 / 2016 Dec 17
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
|
|
@ -8,8 +20,8 @@
|
||||||
|
|
||||||
> This should be a minor, non-breaking release.
|
> This should be a minor, non-breaking release.
|
||||||
|
|
||||||
* [#85] *Impl*: Lazily create LZ4 instance, fixes issue with Google App Engine
|
* [#85] **Impl**: Lazily create LZ4 instance, fixes issue with Google App Engine
|
||||||
* *Impl*: Bump 1-byte cacheable types from 5->8
|
* **Impl**: Bump 1-byte cacheable types from 5->8
|
||||||
|
|
||||||
## v2.12.2 / 2016 Aug 23
|
## v2.12.2 / 2016 Aug 23
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,7 @@
|
||||||
**[CHANGELOG]** | [API] | current [Break Version]:
|
**[CHANGELOG]** | [API] | current [Break Version]:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
[com.taoensso/nippy "2.12.2"] ; Stable
|
[com.taoensso/nippy "2.13.0"] ; Please see CHANGELOG for details
|
||||||
[com.taoensso/nippy "2.13.0-RC1"] ; Please see CHANGELOG for details
|
|
||||||
```
|
```
|
||||||
|
|
||||||
> Please consider helping to [support my continued open-source Clojure/Script work]?
|
> 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
|
||||||
Add the necessary dependency to your project:
|
Add the necessary dependency to your project:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
[com.taoensso/nippy "2.12.2"]
|
[com.taoensso/nippy "2.13.0"]
|
||||||
```
|
```
|
||||||
|
|
||||||
And setup your namespace imports:
|
And setup your namespace imports:
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
(defproject com.taoensso/nippy "2.13.0-RC1"
|
(defproject com.taoensso/nippy "2.13.0"
|
||||||
:author "Peter Taoussanis <https://www.taoensso.com>"
|
:author "Peter Taoussanis <https://www.taoensso.com>"
|
||||||
:description "High-performance serialization library for Clojure"
|
:description "High-performance serialization library for Clojure"
|
||||||
:url "https://github.com/ptaoussanis/nippy"
|
:url "https://github.com/ptaoussanis/nippy"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue