Merge branch 'dev'
This commit is contained in:
commit
56ce4e7b51
3 changed files with 13 additions and 7 deletions
|
|
@ -1,5 +1,13 @@
|
||||||
> 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.11.0 / 2016 Feb 25
|
||||||
|
|
||||||
|
> Identical to v2.11.0-beta1 (published December 13 2015)
|
||||||
|
|
||||||
|
```clojure
|
||||||
|
[com.taoensso/nippy "2.11.0"]
|
||||||
|
```
|
||||||
|
|
||||||
## v2.11.0-RC1 / 2016 Jan 23
|
## v2.11.0-RC1 / 2016 Jan 23
|
||||||
|
|
||||||
> Identical to v2.11.0-beta1 (published December 13 2015)
|
> Identical to v2.11.0-beta1 (published December 13 2015)
|
||||||
|
|
@ -8,7 +16,6 @@
|
||||||
[com.taoensso/nippy "2.11.0-RC1"]
|
[com.taoensso/nippy "2.11.0-RC1"]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## v2.11.0-beta1 / 2015 Dec 13
|
## v2.11.0-beta1 / 2015 Dec 13
|
||||||
|
|
||||||
> This is a major performance release that **drops default support for thawing Nippy v1 archives** but is otherwise non-breaking
|
> This is a major performance release that **drops default support for thawing Nippy v1 archives** but is otherwise non-breaking
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,7 @@
|
||||||
**[CHANGELOG]** | [API] | current [Break Version]:
|
**[CHANGELOG]** | [API] | current [Break Version]:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
[com.taoensso/nippy "2.10.0"] ; Stable
|
[com.taoensso/nippy "2.11.0"] ; Stable
|
||||||
[com.taoensso/nippy "2.11.0-RC1"] ; See CHANGELOG for details
|
|
||||||
```
|
```
|
||||||
|
|
||||||
# Nippy
|
# Nippy
|
||||||
|
|
@ -33,7 +32,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.10.0"]
|
[com.taoensso/nippy "2.11.0"]
|
||||||
```
|
```
|
||||||
|
|
||||||
And setup your namespace imports:
|
And setup your namespace imports:
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
(defproject com.taoensso/nippy "2.11.0-RC1"
|
(defproject com.taoensso/nippy "2.11.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"
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
:dependencies
|
:dependencies
|
||||||
[[org.clojure/clojure "1.5.1"]
|
[[org.clojure/clojure "1.5.1"]
|
||||||
[org.clojure/tools.reader "0.10.0"]
|
[org.clojure/tools.reader "0.10.0"]
|
||||||
[com.taoensso/encore "2.32.0"]
|
[com.taoensso/encore "2.36.1"]
|
||||||
[org.iq80.snappy/snappy "0.4"]
|
[org.iq80.snappy/snappy "0.4"]
|
||||||
[org.tukaani/xz "1.5"]
|
[org.tukaani/xz "1.5"]
|
||||||
[net.jpountz.lz4/lz4 "1.3"]]
|
[net.jpountz.lz4/lz4 "1.3"]]
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
{:plugins
|
{:plugins
|
||||||
[[lein-pprint "1.1.2"]
|
[[lein-pprint "1.1.2"]
|
||||||
[lein-ancient "0.6.8"]
|
[lein-ancient "0.6.8"]
|
||||||
[lein-codox "0.9.1"]]}]}
|
[lein-codox "0.9.4"]]}]}
|
||||||
|
|
||||||
:test-paths ["test" "src"]
|
:test-paths ["test" "src"]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue