v3.1.1 2020-11-18

This commit is contained in:
Peter Taoussanis 2020-11-18 11:55:36 +01:00
parent ef8a9b659d
commit ba8827708e
3 changed files with 19 additions and 4 deletions

View file

@ -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

View file

@ -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
```
<!-- ![build status](https://github.com/ptaoussanis/nippy/workflows/build/badge.svg?branch=master) -->
@ -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:

View file

@ -1,4 +1,4 @@
(defproject com.taoensso/nippy "3.1.0"
(defproject com.taoensso/nippy "3.1.1"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "High-performance serialization library for Clojure"
:url "https://github.com/ptaoussanis/nippy"