v3.1.2 2022-06-23
This commit is contained in:
parent
8909a32bdd
commit
62d4deca54
3 changed files with 19 additions and 5 deletions
14
CHANGELOG.md
14
CHANGELOG.md
|
|
@ -1,5 +1,19 @@
|
||||||
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
|
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
|
||||||
|
|
||||||
|
## v3.1.2 / 2022 Jun 23
|
||||||
|
|
||||||
|
```clojure
|
||||||
|
[com.taoensso/nippy "3.1.2"]
|
||||||
|
```
|
||||||
|
|
||||||
|
> This is a non-breaking, bugfix release.
|
||||||
|
|
||||||
|
* [#89 #150] [Fix] Boxed Booleans incorrectly freezing to primitive `true` (@RolT)
|
||||||
|
|
||||||
|
The bug fixed with this release has been around since the first version of Nippy and
|
||||||
|
is mostly relevant to users doing Java interop. For more info see:
|
||||||
|
https://github.com/ptaoussanis/nippy/commit/8909a32bdd654a136da385e0e09c9cc44416f964
|
||||||
|
|
||||||
## v3.1.1 / 2020 Nov 18
|
## v3.1.1 / 2020 Nov 18
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
**[CHANGELOG]** | [API] | current [Break Version]:
|
**[CHANGELOG]** | [API] | current [Break Version]:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
[com.taoensso/nippy "3.1.1"] ; See CHANGELOG for details
|
[com.taoensso/nippy "3.1.2"] ; 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:
|
Add the necessary dependency to your project:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
Leiningen: [com.taoensso/nippy "3.1.1"] ; or
|
Leiningen: [com.taoensso/nippy "3.1.2"] ; or
|
||||||
deps.edn: com.taoensso/nippy {:mvn/version "3.1.1"}
|
deps.edn: com.taoensso/nippy {:mvn/version "3.1.2"}
|
||||||
```
|
```
|
||||||
|
|
||||||
And setup your namespace imports:
|
And setup your namespace imports:
|
||||||
|
|
@ -199,7 +199,7 @@ Otherwise, you can reach me at [Taoensso.com]. Happy hacking!
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Distributed under the [EPL v1.0] \(same as Clojure).
|
Distributed under the [EPL v1.0] \(same as Clojure).
|
||||||
Copyright © 2012-2020 [Peter Taoussanis].
|
Copyright © 2012-2022 [Peter Taoussanis].
|
||||||
|
|
||||||
<!--- Standard links -->
|
<!--- Standard links -->
|
||||||
[Taoensso.com]: https://www.taoensso.com
|
[Taoensso.com]: https://www.taoensso.com
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
(defproject com.taoensso/nippy "3.1.1"
|
(defproject com.taoensso/nippy "3.1.2"
|
||||||
:author "Peter Taoussanis <https://www.taoensso.com>"
|
:author "Peter Taoussanis <https://www.taoensso.com>"
|
||||||
:description "High-performance serialization library for Clojure"
|
:description "High-performance serialization library for Clojure"
|
||||||
:url "https://github.com/ptaoussanis/nippy"
|
:url "https://github.com/ptaoussanis/nippy"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue