diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a9b58b..a0b3509 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ This project uses [**Break Versioning**](https://www.taoensso.com/break-versioni --- +# `v3.4.1` (2024-05-02) + +> **Dep**: Nippy is [on Clojars](https://clojars.org/com.taoensso/nippy/versions/3.4.1). +> **Versioning**: Nippy uses [Break Versioning](https://www.taoensso.com/break-versioning). + +Like [`v3.4.0`](https://github.com/taoensso/nippy/releases/tag/v3.4.0) but introduces an internal mechanism to help make it easier for some users that do **rolling updates** from earlier versions of Nippy. + +Still, the usual warning applies: data **frozen by Nippy version X** should ideally be **thawed by version >= X**, otherwise you run the risk of the thaw throwing when unfamiliar types are encountered. Please note that this can affect **rolling updates**, and can limit your ability to **revert a Nippy update**. Please ensure adequate testing in your environment before updating against production data! + +\- [Peter Taoussanis](https://www.taoensso.com) + +## Changes since `v3.4.0` + +* [mod] Due to some internal format changes, Nippy `v3.4.1` may produce **different serialized output** to `v3.4.0` and earlier versions of Nippy. Most users won't care about this, but you could be affected if you depend on specific serialized byte values (for example by comparing serialized output between different versions of Nippy). + +--- + # `v3.4.0` (2024-04-30) > **Dep**: Nippy is [on Clojars](https://clojars.org/com.taoensso/nippy/versions/3.4.0). diff --git a/README.md b/README.md index 81ad05c..bd5eedd 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Used by [Carmine](https://www.taoensso.com/carmine), [Faraday](https://www.taoen ## Latest release/s -- `2024-04-30` `v3.4.0`: [release info](../../releases/tag/v3.4.0) +- `2024-05-02` `v3.4.1`: [release info](../../releases/tag/v3.4.1) [![Main tests][Main tests SVG]][Main tests URL] [![Graal tests][Graal tests SVG]][Graal tests URL] diff --git a/project.clj b/project.clj index a7aac08..8f28470 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/nippy "3.4.0" +(defproject com.taoensso/nippy "3.4.1" :author "Peter Taoussanis " :description "The fastest serialization library for Clojure" :url "https://www.taoensso.com/nippy"