v2.10.0-beta1
This commit is contained in:
parent
41d3dcd467
commit
40b39db9eb
3 changed files with 19 additions and 3 deletions
17
CHANGELOG.md
17
CHANGELOG.md
|
|
@ -1,5 +1,20 @@
|
||||||
> 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.10.0-beta1 / 2015 Sep 17
|
||||||
|
|
||||||
|
> This is a major **non-breaking** feature/performance release
|
||||||
|
|
||||||
|
* **DEPRECATION NOTICE**: this will be the last major release with support for Clojure 1.4
|
||||||
|
* **Performance**: various small performance improvements
|
||||||
|
* **New**: dynamic `*default-freeze-compressor-selector*`, `set-default-freeze-compressor-selector!` util
|
||||||
|
* **New**: dynamic `*custom-readers*`, `swap-custom-readers!` util
|
||||||
|
* **New**: edn writes now override dynamic `*print-level*`, `*print-length*` for safety
|
||||||
|
|
||||||
|
```clojure
|
||||||
|
[com.taoensso/nippy "2.10.0-beta1"]
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## v2.9.1 / 2015 Sep 14
|
## v2.9.1 / 2015 Sep 14
|
||||||
|
|
||||||
> This is a hotfix release with an **important fix** for Nippy encryption users
|
> This is a hotfix release with an **important fix** for Nippy encryption users
|
||||||
|
|
@ -13,7 +28,7 @@
|
||||||
|
|
||||||
## v2.9.0 / 2015 Jun 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**.
|
> This is a major **non-breaking** release that improves performance and makes thawing more resilient to certain failures. Identical to **v2.9.0-RC3**.
|
||||||
|
|
||||||
* **Robustness**: improve error handling for unthawable records
|
* **Robustness**: improve error handling for unthawable records
|
||||||
* **Performance**: switch `doseq` -> (faster) `run!` calls
|
* **Performance**: switch `doseq` -> (faster) `run!` calls
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:
|
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
[com.taoensso/nippy "2.9.1"] ; Stable, see CHANGELOG for details
|
[com.taoensso/nippy "2.9.1"] ; Stable
|
||||||
|
[com.taoensso/nippy "2.10.0-beta1"] ; Dev, see CHANGELOG for details
|
||||||
```
|
```
|
||||||
|
|
||||||
# Nippy, a Clojure serialization library
|
# Nippy, a Clojure serialization library
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
(defproject com.taoensso/nippy "2.9.1"
|
(defproject com.taoensso/nippy "2.10.0-beta1"
|
||||||
:author "Peter Taoussanis <https://www.taoensso.com>"
|
:author "Peter Taoussanis <https://www.taoensso.com>"
|
||||||
:description "Clojure serialization library"
|
:description "Clojure serialization library"
|
||||||
:url "https://github.com/ptaoussanis/nippy"
|
:url "https://github.com/ptaoussanis/nippy"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue