Skip to content

Commit a5d2294

Browse files
committed
v2.6.0
1 parent 6058ac7 commit a5d2294

File tree

3 files changed

+10
-22
lines changed

3 files changed

+10
-22
lines changed

CHANGELOG.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
1-
## Pending / unreleased
2-
3-
* Fix: `freezable?` fn name typo (mbossenbroek).
4-
5-
6-
## v2.6.0-RC1 / 2014 Mar 12
1+
## v2.6.0 / 2014 Mar 30
72

83
> **Major release** with efficiency improvements, reliability improvements, and some new utils.
9-
> Welcoming feedback on any issues, etc.!
104
115
### New
126

README.md

+5-11
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contributing](#contact--contributing) | current ([semantic][]) version:
22

33
```clojure
4-
[com.taoensso/nippy "2.5.2"] ; Stable
5-
[com.taoensso/nippy "2.6.0-RC1"] ; Appropriate for staging, production early adopters
4+
[com.taoensso/nippy "2.6.0"] ; Stable
65
```
76

87
v2.6 will be a backwards-compatible release with: improved performance (incl. frozen data size), a new low-level DataInput/DataOuput API, improved support for headerless freezing, and 1-to-1 binary-value representation guarantees. See the [Changelog](https://github.com/ptaoussanis/nippy/blob/master/CHANGELOG.md) for details.
@@ -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.5.2"] ; project.clj
37+
[com.taoensso/nippy "2.6.0"] ; project.clj
3938
(ns my-app (:require [taoensso.nippy :as nippy])) ; ns
4039
```
4140

@@ -149,12 +148,6 @@ There's two default forms of encryption on offer: `:salted` and `:cached`. Each
149148

150149
[Detailed benchmark information](https://docs.google.com/spreadsheet/ccc?key=0AuSXb68FH4uhdE5kTTlocGZKSXppWG9sRzA5Y2pMVkE&pli=1#gid=0) is available on Google Docs.
151150

152-
## This project supports the CDS and ![ClojureWerkz](https://raw.github.com/clojurewerkz/clojurewerkz.org/master/assets/images/logos/clojurewerkz_long_h_50.png) goals
153-
154-
* [CDS][], the **Clojure Documentation Site**, is a **contributer-friendly** community project aimed at producing top-notch, **beginner-friendly** Clojure tutorials and documentation. Awesome resource.
155-
156-
* [ClojureWerkz][] is a growing collection of open-source, **batteries-included Clojure libraries** that emphasise modern targets, great documentation, and thorough testing. They've got a ton of great stuff, check 'em out!
157-
158151
## Contact & contributing
159152

160153
`lein start-dev` to get a (headless) development repl that you can connect to with [Cider][] (emacs) or your IDE.
@@ -169,7 +162,8 @@ Copyright © 2012-2014 Peter Taoussanis. Distributed under the [Eclipse Publ
169162

170163

171164
[API docs]: <http://ptaoussanis.github.io/nippy/>
172-
[CHANGELOG]: <https://github.com/ptaoussanis/nippy/blob/master/CHANGELOG.md>
165+
[CHANGELOG_]: <https://github.com/ptaoussanis/nippy/blob/master/CHANGELOG.md>
166+
[CHANGELOG]: <https://github.com/ptaoussanis/nippy/releases>
173167
[other Clojure libs]: <https://www.taoensso.com/clojure-libraries>
174168
[Twitter]: <https://twitter.com/ptaoussanis>
175169
[semantic]: <http://semver.org/>
@@ -180,4 +174,4 @@ Copyright &copy; 2012-2014 Peter Taoussanis. Distributed under the [Eclipse Publ
180174
[commit history]: <https://github.com/ptaoussanis/nippy/commits/master>
181175
[Cider]: <https://github.com/clojure-emacs/cider>
182176
[taoensso.com]: <https://www.taoensso.com>
183-
[Eclipse Public License]: <https://raw2.github.com/ptaoussanis/nippy/master/LICENSE>
177+
[Eclipse Public License]: <https://raw2.github.com/ptaoussanis/nippy/master/LICENSE>

project.clj

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso/nippy "2.6.0-RC1"
1+
(defproject com.taoensso/nippy "2.6.0"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "Clojure serialization library"
44
:url "https://github.com/ptaoussanis/nippy"
@@ -12,15 +12,15 @@
1212
:dependencies
1313
[[org.clojure/clojure "1.4.0"]
1414
[org.clojure/tools.reader "0.8.3"]
15-
[com.taoensso/encore "0.9.8"]
15+
[com.taoensso/encore "1.1.0"]
1616
[org.iq80.snappy/snappy "0.3"]
17-
[org.tukaani/xz "1.4"]]
17+
[org.tukaani/xz "1.5"]]
1818

1919
:test-paths ["test" "src"]
2020
:profiles
2121
{;; :default [:base :system :user :provided :dev]
2222
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
23-
:1.6 {:dependencies [[org.clojure/clojure "1.6.0-beta1"]]}
23+
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
2424
:test {:jvm-opts ["-Xms1024m" "-Xmx2048m"]
2525
:dependencies [[expectations "1.4.56"]
2626
[org.clojure/test.check "0.5.7"]

0 commit comments

Comments
 (0)