Skip to content

Commit

Permalink
v3.1.0 2020-11-06
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Nov 6, 2020
1 parent 97dd98e commit 79e78f1
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 5 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
## v3.1.0 / 2020 Nov 6

```clojure
[com.taoensso/nippy "3.1.0"]
```

> This is a non-breaking, minor feature release.
#### New since `v3.0.0`

* [#135 #128] Added native `freeze/thaw` support for `java.time` classes on JVM 8+: `Instant`, `Duration`, `Period`.
* [#137] Add `thaw-from-resource` convenience util.
* Add (DEPRECATED) `swap-serializable-whitelist!` for backwards compatibility.

#### Changes since `v3.0.0`

* Add several standard `java.time` classes to default `*thaw-serializable-whitelist*`.


## v3.1.0-RC1 / 2020 Oct 24

```clojure
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
**[CHANGELOG]** | [API] | current [Break Version]:

```clojure
[com.taoensso/nippy "3.1.0-RC1"] ; Dev, see CHANGELOG for details
[com.taoensso/nippy "3.0.0"] ; Stable
[com.taoensso/nippy "3.1.0"] ; See CHANGELOG for details
```

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

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.1.0-RC1"
(defproject com.taoensso/nippy "3.1.0"
: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 79e78f1

Please sign in to comment.