From 38efea3ca9c2d56a281cc9644cd21e90d8e8630e Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Wed, 18 Feb 2015 17:33:22 +0700 Subject: [PATCH] v2.8.0 --- CHANGELOG.md | 8 ++++++++ README.md | 6 ++---- project.clj | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ed01a1..150b7b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ > This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**. +## v2.8.0 / 2015 Feb 18 + +> This is a **maintenance release** with some minor fixes and some dependency updates. + + * **CHANGE**: Throw a clear error message on insufficient Encore dependency. + * **FIX** [#59]: `freezable?` should return true for clojure.lang.PersistentVector (@chairmanwow). + * **FIX** [#63]: Missing thaw exception cause (@cespare). + ## v2.7.1 / 2014 Nov 27 > This is a **minor maintenance release** & should be a safe upgrade for users of v2.7.0/RC-1. diff --git a/README.md b/README.md index a63cbca..1af31e2 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,9 @@ **[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]: ```clojure -[com.taoensso/nippy "2.7.1"] ; Please see CHANGELOG for details +[com.taoensso/nippy "2.8.0"] ; Please see CHANGELOG for details ``` -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! - # Nippy, a Clojure serialization library 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 Add the necessary dependency to your [Leiningen][] `project.clj` and `require` the library in your ns: ```clojure -[com.taoensso/nippy "2.7.0"] ; project.clj +[com.taoensso/nippy "2.8.0"] ; project.clj (ns my-app (:require [taoensso.nippy :as nippy])) ; ns ``` diff --git a/project.clj b/project.clj index 3500b27..a6b4a1c 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/nippy "2.7.1" +(defproject com.taoensso/nippy "2.8.0" :author "Peter Taoussanis " :description "Clojure serialization library" :url "https://github.com/ptaoussanis/nippy"