This commit is contained in:
Peter Taoussanis 2014-10-06 14:56:47 +07:00
parent 12254baed2
commit 89c51ffc83
3 changed files with 8 additions and 4 deletions

View file

@ -1,5 +1,10 @@
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
## v2.7.0 / 2014 Oct 6
No changes from `v2.7.0-RC1`.
## v2.7.0-RC1 / 2014 Aug 27
> **Major release** with significant performance improvements, a new default compression type ([LZ4](http://blog.jpountz.net/post/28092106032/wow-lz4-is-fast)), and better support for a variety of compression/encryption tools.

View file

@ -1,8 +1,7 @@
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:
```clojure
[com.taoensso/nippy "2.6.3"] ; Stable
[com.taoensso/nippy "2.7.0-RC1"] ; Development
[com.taoensso/nippy "2.7.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!
@ -35,7 +34,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:
```clojure
[com.taoensso/nippy "2.6.3"] ; project.clj
[com.taoensso/nippy "2.7.0"] ; project.clj
(ns my-app (:require [taoensso.nippy :as nippy])) ; ns
```

View file

@ -1,4 +1,4 @@
(defproject com.taoensso/nippy "2.7.0-RC1"
(defproject com.taoensso/nippy "2.7.0"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Clojure serialization library"
:url "https://github.com/ptaoussanis/nippy"