diff --git a/CHANGELOG.md b/CHANGELOG.md index 9eef4b4..da58d29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ > This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**. +## v2.13.0 / 2017 Feb 13 + +```clojure +[com.taoensso/nippy "2.13.0"] +``` + +> This is a minor, non-breaking maintenance release. + +* [#91] **New**: Add `freeze-to-file` and `thaw-from-file` utils (@Engelberg) +* [#85] *Impl*: Lazily create LZ4 instance, fixes issue with Google App Engine +* **Impl**: Bump 1-byte cacheable types from 5->8 + ## v2.13.0-RC1 / 2016 Dec 17 ```clojure @@ -8,8 +20,8 @@ > This should be a minor, non-breaking release. -* [#85] *Impl*: Lazily create LZ4 instance, fixes issue with Google App Engine -* *Impl*: Bump 1-byte cacheable types from 5->8 +* [#85] **Impl**: Lazily create LZ4 instance, fixes issue with Google App Engine +* **Impl**: Bump 1-byte cacheable types from 5->8 ## v2.12.2 / 2016 Aug 23 diff --git a/README.md b/README.md index 0ab5f8d..7ef51a2 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,7 @@ **[CHANGELOG]** | [API] | current [Break Version]: ```clojure -[com.taoensso/nippy "2.12.2"] ; Stable -[com.taoensso/nippy "2.13.0-RC1"] ; Please see CHANGELOG for details +[com.taoensso/nippy "2.13.0"] ; Please see CHANGELOG for details ``` > Please consider helping to [support my continued open-source Clojure/Script work]? @@ -39,7 +38,7 @@ Nippy is an attempt to provide a reliable, high-performance **drop-in alternativ Add the necessary dependency to your project: ```clojure -[com.taoensso/nippy "2.12.2"] +[com.taoensso/nippy "2.13.0"] ``` And setup your namespace imports: diff --git a/project.clj b/project.clj index b622d49..9084f06 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/nippy "2.13.0-RC1" +(defproject com.taoensso/nippy "2.13.0" :author "Peter Taoussanis " :description "High-performance serialization library for Clojure" :url "https://github.com/ptaoussanis/nippy"