Skip to content

Commit

Permalink
v3.2.0-RC2 2022-06-23
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Jun 23, 2022
1 parent 761fcac commit d2b994a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
24 changes: 12 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
## v3.2.0-RC1 / 2022 Jun 23
## v3.2.0-RC2 / 2022 Jun 23

```clojure
[com.taoensso/nippy "3.2.0-RC1"]
[com.taoensso/nippy "3.2.0-RC2"]
```

> This is a non-breaking maintenance release.
> See [here](https://github.com/ptaoussanis/encore#recommended-steps-after-any-significant-dependency-update) for recommended steps when updating any Clojure/Script dependencies.
#### New since `v3.1.2`
#### New since `v3.1.3`

* [#144] [New] Add `org.joda.time.DateTime` to `default-thaw-serializable-allowlist` (@slipset)
* [#146] [New] Add Graal native configurations (@FieryCod)

#### Changes since `v3.1.2`
#### Changes since `v3.1.3`

* Bump dependencies, incl. minimum Encore version

#### Fixes since `v3.1.1`

* [#148] [Fix] `tools/freeze` should use `*freeze-opts*` even for unwrapped vals
* [#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
The boxed Boolean bug 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.2 / 2022 Jun 23
## v3.1.3 / 2022 Jun 23

```clojure
[com.taoensso/nippy "3.1.2"]
[com.taoensso/nippy "3.1.3"]
```

> This is a non-breaking, bugfix release.
> See [here](https://github.com/ptaoussanis/encore#recommended-steps-after-any-significant-dependency-update) for recommended steps when updating any Clojure/Script dependencies.
#### Fixes since `v3.1.1`

* [#148] [Fix] `tools/freeze` should use `*freeze-opts*` even for unwrapped vals
* [#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
The boxed Boolean bug 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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
**[CHANGELOG]** | [API] | current [Break Version]:

```clojure
[com.taoensso/nippy "3.1.2"] ; Stable
[com.taoensso/nippy "3.2.0-RC1"] ; Dev, see CHANGELOG for details
[com.taoensso/nippy "3.1.3"] ; Stable
[com.taoensso/nippy "3.2.0-RC2"] ; Dev, see CHANGELOG for details
```

<!-- ![build status](https://github.com/ptaoussanis/nippy/workflows/build/badge.svg?branch=master) -->
Expand Down Expand Up @@ -41,8 +41,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.2"] ; or
deps.edn: com.taoensso/nippy {:mvn/version "3.1.2"}
Leiningen: [com.taoensso/nippy "3.1.3"] ; or
deps.edn: com.taoensso/nippy {:mvn/version "3.1.3"}
```

And setup your namespace imports:
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.taoensso/nippy "3.2.0-RC1"
(defproject com.taoensso/nippy "3.2.0-RC2"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "High-performance serialization library for Clojure"
:url "https://github.com/ptaoussanis/nippy"
Expand Down

0 comments on commit d2b994a

Please sign in to comment.