v2.9.0-RC1
This commit is contained in:
parent
ed3d9c55d9
commit
e8fc801ab3
3 changed files with 17 additions and 3 deletions
13
CHANGELOG.md
13
CHANGELOG.md
|
|
@ -1,5 +1,18 @@
|
|||
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
|
||||
|
||||
## v2.9.0-RC1 / 2015 Apr 29
|
||||
|
||||
> This is a non-breaking **performance release** that can result in significant speed+space improvements for users serializing many small values
|
||||
|
||||
* **Implementation**: eliminate some unnecessary boxed math
|
||||
* **New**: intelligent allow auto-selection of `freeze` compression scheme using `:auto` compressor (now the default)
|
||||
|
||||
|
||||
```clojure
|
||||
[com.taoensso/nippy "2.9.0-RC1"]
|
||||
```
|
||||
|
||||
|
||||
## v2.8.0 / 2015 Feb 18
|
||||
|
||||
> This is a **maintenance release** with some minor fixes and some dependency updates.
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:
|
||||
|
||||
```clojure
|
||||
[com.taoensso/nippy "2.8.0"] ; Please see CHANGELOG for details
|
||||
[com.taoensso/nippy "2.8.0"] ; Stable
|
||||
[com.taoensso/nippy "2.9.0-RC1"] ; Dev, please see CHANGELOG for details
|
||||
```
|
||||
|
||||
# Nippy, a Clojure serialization library
|
||||
|
|
@ -171,4 +172,4 @@ Copyright © 2012-2014 Peter Taoussanis. Distributed under the [Eclipse Publ
|
|||
[Cider]: https://github.com/clojure-emacs/cider
|
||||
[CDS]: http://clojure-doc.org/
|
||||
[ClojureWerkz]: http://clojurewerkz.org/
|
||||
[Eclipse Public License]: https://raw2.github.com/ptaoussanis/nippy/master/LICENSE
|
||||
[Eclipse Public License]: https://raw2.github.com/ptaoussanis/nippy/master/LICENSE
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
(defproject com.taoensso/nippy "2.8.0"
|
||||
(defproject com.taoensso/nippy "2.9.0-RC1"
|
||||
:author "Peter Taoussanis <https://www.taoensso.com>"
|
||||
:description "Clojure serialization library"
|
||||
:url "https://github.com/ptaoussanis/nippy"
|
||||
|
|
|
|||
Loading…
Reference in a new issue