From 40b39db9eb4afd29690e288b259523162768c9d1 Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Mon, 14 Sep 2015 17:09:45 +0700 Subject: [PATCH] v2.10.0-beta1 --- CHANGELOG.md | 17 ++++++++++++++++- README.md | 3 ++- project.clj | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2325ab8..ce91620 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ > This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**. +## v2.10.0-beta1 / 2015 Sep 17 + +> This is a major **non-breaking** feature/performance release + +* **DEPRECATION NOTICE**: this will be the last major release with support for Clojure 1.4 +* **Performance**: various small performance improvements +* **New**: dynamic `*default-freeze-compressor-selector*`, `set-default-freeze-compressor-selector!` util +* **New**: dynamic `*custom-readers*`, `swap-custom-readers!` util +* **New**: edn writes now override dynamic `*print-level*`, `*print-length*` for safety + +```clojure +[com.taoensso/nippy "2.10.0-beta1"] +``` + + ## v2.9.1 / 2015 Sep 14 > This is a hotfix release with an **important fix** for Nippy encryption users @@ -13,7 +28,7 @@ ## v2.9.0 / 2015 Jun 1 -> This is a major, **non-breaking** release that improves performance and makes thawing more resilient to certain failures. Identical to **v2.9.0-RC3**. +> This is a major **non-breaking** release that improves performance and makes thawing more resilient to certain failures. Identical to **v2.9.0-RC3**. * **Robustness**: improve error handling for unthawable records * **Performance**: switch `doseq` -> (faster) `run!` calls diff --git a/README.md b/README.md index 28b9142..7a31edb 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,8 @@ **[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]: ```clojure -[com.taoensso/nippy "2.9.1"] ; Stable, see CHANGELOG for details +[com.taoensso/nippy "2.9.1"] ; Stable +[com.taoensso/nippy "2.10.0-beta1"] ; Dev, see CHANGELOG for details ``` # Nippy, a Clojure serialization library diff --git a/project.clj b/project.clj index 82aed6e..770590b 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/nippy "2.9.1" +(defproject com.taoensso/nippy "2.10.0-beta1" :author "Peter Taoussanis " :description "Clojure serialization library" :url "https://github.com/ptaoussanis/nippy"