Skip to content

Commit 280019a

Browse files
committed
v2.10.0
1 parent 4765a32 commit 280019a

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
22
3-
## v2.10.0-RC1 / 2015 Sep 26
3+
## v2.10.0 / 2015 Sep 30
44

5-
> This is a major **non-breaking** feature/performance release
5+
> This is a major feature/performance release that **drops support for Clojure 1.4** but is otherwise non-breaking
66
7-
* **DEPRECATION NOTICE**: this will be the last major release with support for Clojure 1.4
7+
* **BREAKING**: drop support for Clojure 1.4 (**now requires Clojure 1.5+**)
88
* **Performance**: various small performance improvements
99
* **New**: dynamic `*default-freeze-compressor-selector*`, `set-default-freeze-compressor-selector!` util
1010
* **New**: dynamic `*custom-readers*`, `swap-custom-readers!` util
1111
* **New**: edn writes now override dynamic `*print-level*`, `*print-length*` for safety
1212

1313
```clojure
14-
[com.taoensso/nippy "2.10.0-RC1"]
14+
[com.taoensso/nippy "2.10.0"]
1515
```
1616

1717

README.md

Lines changed: 3 additions & 4 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.9.1"] ; Stable
5-
[com.taoensso/nippy "2.10.0-RC1"] ; Dev, see CHANGELOG for details
4+
[com.taoensso/nippy "2.10.0"] ; Stable, see CHANGELOG for details
65
```
76

87
# Nippy, a Clojure serialization library
@@ -30,7 +29,7 @@ Nippy is an attempt to provide a reliable, high-performance **drop-in alternativ
3029
Add the necessary dependency to your [Leiningen][] `project.clj` and `require` the library in your ns:
3130

3231
```clojure
33-
[com.taoensso/nippy "2.9.1"] ; project.clj
32+
[com.taoensso/nippy "2.10.0"] ; project.clj
3433
(ns my-app (:require [taoensso.nippy :as nippy])) ; ns
3534
```
3635

@@ -154,7 +153,7 @@ Otherwise reach me (Peter Taoussanis) at [taoensso.com][] or on [Twitter][]. Che
154153

155154
## License
156155

157-
Copyright © 2012-2014 Peter Taoussanis. Distributed under the [Eclipse Public License][], the same as Clojure.
156+
Copyright © 2012-2015 Peter Taoussanis. Distributed under the [Eclipse Public License][], the same as Clojure.
158157

159158

160159
[API docs]: http://ptaoussanis.github.io/nippy/

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.10.0-RC1"
1+
(defproject com.taoensso/nippy "2.10.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)