From 7fe200e60accd475ab430e568e191bf29df9bfeb Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Mon, 31 Aug 2020 09:00:34 +0200 Subject: [PATCH] v2.15.2 Encore 1.123.0 introduced an issue affecting Timbre. Issue was addressed with Encore 2.125.2. Updating Encore here doesn't affect Nippy, but may be helpful for users of Nippy that also use Timbre and that haven't otherwise updated to a newer version of Encore yet. --- CHANGELOG.md | 18 ++++++++++++++++++ README.md | 4 ++-- project.clj | 4 ++-- 3 files changed, 22 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0061237..2091d67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ > This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**. +## v2.15.2 / 2020 Aug 31 + +```clojure +[com.taoensso/nippy "2.15.2"] +``` + +> This is a quick hotfix release, should be non-breaking. + +Only change since `v2.15.0` is to bump Encore dependency (`v2.124.0`->`v2.126.2`). + +Encore `v1.123.0` introduced an issue affecting Timbre. +Issue was addressed with Encore `v2.125.2`. + +Updating Encore here doesn't affect Nippy, but may be helpful for users of +Nippy that also use Timbre and that haven't otherwise updated to a newer +version of Encore yet. + + ## v2.15.1 / 2020 Aug 27 ```clojure diff --git a/README.md b/README.md index 4617367..c8e4a91 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ **[CHANGELOG]** | [API] | current [Break Version]: ```clojure -[com.taoensso/nippy "2.15.1"] ; BREAKING, see CHANGELOG for details +[com.taoensso/nippy "2.15.2"] ; BREAKING, see CHANGELOG for details ``` ## ** SECURITY ADVISORY ** @@ -46,7 +46,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.15.1"] +[com.taoensso/nippy "2.15.2"] ``` And setup your namespace imports: diff --git a/project.clj b/project.clj index 21d64ce..4730f1e 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/nippy "2.15.1" +(defproject com.taoensso/nippy "2.15.2" :author "Peter Taoussanis " :description "High-performance serialization library for Clojure" :url "https://github.com/ptaoussanis/nippy" @@ -15,7 +15,7 @@ :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.reader "1.3.2"] - [com.taoensso/encore "2.124.0"] + [com.taoensso/encore "2.126.2"] [org.iq80.snappy/snappy "0.4"] [org.tukaani/xz "1.8"] [org.lz4/lz4-java "1.7.1"]]