From aaf54d9c9c5a4a996f02504c42cbedb23768e5a0 Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Thu, 27 Aug 2020 10:30:50 +0200 Subject: [PATCH] v2.15.1 --- CHANGELOG.md | 18 ++++++++++++++++++ README.md | 4 ++-- project.clj | 2 +- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 45c739e8..00612372 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.1 / 2020 Aug 27 + +```clojure +[com.taoensso/nippy "2.15.1"] +``` + +> This is a minor feature release. Should be non-breaking. + +**New** since `v2.15.0`: + + - `*serializable-whitelist*`: sets of approved class names may now contain "*" wildcards. + - `*serializable-whitelist*`: added JVM properties and env vars to override initial value. See updated docstring for details. + +**Changes** since `v2.15.0`: + + - [#126] `extend-freeze`: include id collision odds in docstring. + + ## v2.15.0 / 2020 Jul 24 ```clojure diff --git a/README.md b/README.md index bacd7ba6..46173675 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ **[CHANGELOG]** | [API] | current [Break Version]: ```clojure -[com.taoensso/nippy "2.15.0"] ; BREAKING, see CHANGELOG for details +[com.taoensso/nippy "2.15.1"] ; 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.0"] +[com.taoensso/nippy "2.15.1"] ``` And setup your namespace imports: diff --git a/project.clj b/project.clj index b713e62b..21d64cec 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/nippy "2.15.0" +(defproject com.taoensso/nippy "2.15.1" :author "Peter Taoussanis " :description "High-performance serialization library for Clojure" :url "https://github.com/ptaoussanis/nippy"