v2.8.0
This commit is contained in:
parent
e991ec7899
commit
38efea3ca9
3 changed files with 11 additions and 5 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.8.0 / 2015 Feb 18
|
||||||
|
|
||||||
|
> This is a **maintenance release** with some minor fixes and some dependency updates.
|
||||||
|
|
||||||
|
* **CHANGE**: Throw a clear error message on insufficient Encore dependency.
|
||||||
|
* **FIX** [#59]: `freezable?` should return true for clojure.lang.PersistentVector (@chairmanwow).
|
||||||
|
* **FIX** [#63]: Missing thaw exception cause (@cespare).
|
||||||
|
|
||||||
## v2.7.1 / 2014 Nov 27
|
## v2.7.1 / 2014 Nov 27
|
||||||
|
|
||||||
> This is a **minor maintenance release** & should be a safe upgrade for users of v2.7.0/RC-1.
|
> This is a **minor maintenance release** & should be a safe upgrade for users of v2.7.0/RC-1.
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,9 @@
|
||||||
**[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.7.1"] ; Please see CHANGELOG for details
|
[com.taoensso/nippy "2.8.0"] ; Please see CHANGELOG for details
|
||||||
```
|
```
|
||||||
|
|
||||||
v2.7 is a major, **mostly backwards-compatible** release focused on improved performance and a new default compression scheme (LZ4). See the [CHANGELOG][] for details. Thanks to [mpenet](https://github.com/mpenet) for his work on the LZ4 support!
|
|
||||||
|
|
||||||
# Nippy, a Clojure serialization library
|
# Nippy, a Clojure serialization library
|
||||||
|
|
||||||
Clojure's [rich data types](http://clojure.org/datatypes) are *awesome*. And its [reader](http://clojure.org/reader) allows you to take your data just about anywhere. But the reader can be painfully slow when you've got a lot of data to crunch (like when you're serializing to a database).
|
Clojure's [rich data types](http://clojure.org/datatypes) are *awesome*. And its [reader](http://clojure.org/reader) allows you to take your data just about anywhere. But the reader can be painfully slow when you've got a lot of data to crunch (like when you're serializing to a database).
|
||||||
|
|
@ -34,7 +32,7 @@ Nippy is an attempt to provide a reliable, high-performance **drop-in alternativ
|
||||||
Add the necessary dependency to your [Leiningen][] `project.clj` and `require` the library in your ns:
|
Add the necessary dependency to your [Leiningen][] `project.clj` and `require` the library in your ns:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
[com.taoensso/nippy "2.7.0"] ; project.clj
|
[com.taoensso/nippy "2.8.0"] ; project.clj
|
||||||
(ns my-app (:require [taoensso.nippy :as nippy])) ; ns
|
(ns my-app (:require [taoensso.nippy :as nippy])) ; ns
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
(defproject com.taoensso/nippy "2.7.1"
|
(defproject com.taoensso/nippy "2.8.0"
|
||||||
: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