Skip to content

Commit 38efea3

Browse files
committed
v2.8.0
1 parent e991ec7 commit 38efea3

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
22
3+
## v2.8.0 / 2015 Feb 18
4+
5+
> This is a **maintenance release** with some minor fixes and some dependency updates.
6+
7+
* **CHANGE**: Throw a clear error message on insufficient Encore dependency.
8+
* **FIX** [#59]: `freezable?` should return true for clojure.lang.PersistentVector (@chairmanwow).
9+
* **FIX** [#63]: Missing thaw exception cause (@cespare).
10+
311
## v2.7.1 / 2014 Nov 27
412

513
> This is a **minor maintenance release** & should be a safe upgrade for users of v2.7.0/RC-1.

README.md

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

33
```clojure
4-
[com.taoensso/nippy "2.7.1"] ; Please see CHANGELOG for details
4+
[com.taoensso/nippy "2.8.0"] ; Please see CHANGELOG for details
55
```
66

7-
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!
8-
97
# Nippy, a Clojure serialization library
108

119
Clojure's [rich data types](http://clojure.org/datatypes) are *awesome*. And its [reader](http://clojure.org/reader) allows you to take your data just about anywhere. But the reader can be painfully slow when you've got a lot of data to crunch (like when you're serializing to a database).
@@ -34,7 +32,7 @@ Nippy is an attempt to provide a reliable, high-performance **drop-in alternativ
3432
Add the necessary dependency to your [Leiningen][] `project.clj` and `require` the library in your ns:
3533

3634
```clojure
37-
[com.taoensso/nippy "2.7.0"] ; project.clj
35+
[com.taoensso/nippy "2.8.0"] ; project.clj
3836
(ns my-app (:require [taoensso.nippy :as nippy])) ; ns
3937
```
4038

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