Skip to content

Commit 23feb97

Browse files
committed
v2.6.0-beta1
1 parent 54389cc commit 23feb97

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

CHANGELOG.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
## v2.6.0-alpha4 / 2014 Feb 16
1+
## v2.6.0-beta1 / 2014 Feb 23
22

3-
> **WARNING**: This is an **EXPERIMENTAL early testing release** and **unsuitable for use in production**. Welcoming feedback on any issues, etc.!
3+
> Welcoming feedback on any issues, etc.!
44
55
### New
66

@@ -19,6 +19,7 @@
1919
* **DEPRECATED**: `:legacy-mode` options. This was being used mainly for headerless freezing, so a new headerless mode is taking its place.
2020
* Public utils now available for custom type extension: `write-bytes`, `write-biginteger`, `write-utf8`, `write-compact-long`, and respective readers.
2121
* Now distinguish between `BigInteger` and `BigInt` on thawing (previously both thawed to `BigInt`s). (mlacorte).
22+
* Moved most utils to external `encore` dependency.
2223

2324

2425
## v2.5.2 / 2013 Dec 7
@@ -110,4 +111,4 @@
110111
;; an alternative Encryptor implementing the appropriate protocol
111112
```
112113

113-
See the [README](https://github.com/ptaoussanis/nippy#encryption-currently-in-alpha) for an example using encryption.
114+
See the [README](https://github.com/ptaoussanis/nippy#encryption-currently-in-alpha) for an example using encryption.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
```clojure
44
[com.taoensso/nippy "2.5.2"] ; Stable
5-
[com.taoensso/nippy "2.6.0-alpha4"] ; EXPERIMENTAL early testing release, unsuitable for production
5+
[com.taoensso/nippy "2.6.0-beta1"] ; For early adopters
66
```
77

88
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.
@@ -177,4 +177,4 @@ Copyright © 2012-2014 Peter Taoussanis. Distributed under the [Eclipse Publ
177177
[issues page]: <https://github.com/ptaoussanis/nippy/issues>
178178
[commit history]: <https://github.com/ptaoussanis/nippy/commits/master>
179179
[taoensso.com]: <https://www.taoensso.com>
180-
[Eclipse Public License]: <https://raw2.github.com/ptaoussanis/nippy/master/LICENSE>
180+
[Eclipse Public License]: <https://raw2.github.com/ptaoussanis/nippy/master/LICENSE>

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso/nippy "2.6.0-alpha4"
1+
(defproject com.taoensso/nippy "2.6.0-beta1"
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)