Skip to content

Commit 89c51ff

Browse files
committed
v2.7.0
1 parent 12254ba commit 89c51ff

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
22
3+
## v2.7.0 / 2014 Oct 6
4+
5+
No changes from `v2.7.0-RC1`.
6+
7+
38
## v2.7.0-RC1 / 2014 Aug 27
49

510
> **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.

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:
22

33
```clojure
4-
[com.taoensso/nippy "2.6.3"] ; Stable
5-
[com.taoensso/nippy "2.7.0-RC1"] ; Development
4+
[com.taoensso/nippy "2.7.0"] ; Please see CHANGELOG for details
65
```
76

87
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
3534
Add the necessary dependency to your [Leiningen][] `project.clj` and `require` the library in your ns:
3635

3736
```clojure
38-
[com.taoensso/nippy "2.6.3"] ; project.clj
37+
[com.taoensso/nippy "2.7.0"] ; project.clj
3938
(ns my-app (:require [taoensso.nippy :as nippy])) ; ns
4039
```
4140

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso/nippy "2.7.0-RC1"
1+
(defproject com.taoensso/nippy "2.7.0"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "Clojure serialization library"
44
:url "https://github.com/ptaoussanis/nippy"

0 commit comments

Comments
 (0)