From ba8827708ea9da828735562244d151b59eb692a7 Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Wed, 18 Nov 2020 11:55:36 +0100 Subject: [PATCH] v3.1.1 2020-11-18 --- CHANGELOG.md | 15 +++++++++++++++ README.md | 6 +++--- project.clj | 2 +- 3 files changed, 19 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bfc52d2..1e10937 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**. +## v3.1.1 / 2020 Nov 18 + +```clojure +[com.taoensso/nippy "3.1.1"] +``` + +> This is a non-breaking, bugfix release. But please note that large keywords or symbols (with >127 characters) frozen with >=`v3.1.1` will need >=`v3.1.1` to thaw. + +#### Fixes since `v3.1.0` + +* Large keywords and symbols (with >127 characters) can now thaw without throwing (@danmason). + + +[1] Keywords or symbols with >127 characters in their name + ## v3.1.0 / 2020 Nov 6 ```clojure diff --git a/README.md b/README.md index 0aa2404..e7660cd 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ **[CHANGELOG]** | [API] | current [Break Version]: ```clojure -[com.taoensso/nippy "3.1.0"] ; See CHANGELOG for details +[com.taoensso/nippy "3.1.1"] ; See CHANGELOG for details ``` @@ -40,8 +40,8 @@ Nippy is an attempt to provide a reliable, high-performance **drop-in alternativ Add the necessary dependency to your project: ```clojure -Leiningen: [com.taoensso/nippy "3.1.0"] ; or -deps.edn: com.taoensso/nippy {:mvn/version "3.1.0"} +Leiningen: [com.taoensso/nippy "3.1.1"] ; or +deps.edn: com.taoensso/nippy {:mvn/version "3.1.1"} ``` And setup your namespace imports: diff --git a/project.clj b/project.clj index 0e94d91..64feb9e 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/nippy "3.1.0" +(defproject com.taoensso/nippy "3.1.1" :author "Peter Taoussanis " :description "High-performance serialization library for Clojure" :url "https://github.com/ptaoussanis/nippy"