Skip to content

Commit

Permalink
v3.4.0-beta1 (2023-09-26)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Sep 26, 2023
1 parent bcd5207 commit 25a8bae
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 9 deletions.
23 changes: 18 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,35 @@ This project uses [**Break Versioning**](https://www.taoensso.com/break-versioni

---

# `v3.4.0-beta1` (2023-09-26)

> 📦 [Available on Clojars](https://clojars.org/com.taoensso/nippy/versions/3.4.0-beta1)
## New since `v3.3.0-RC2`

* cd974ed [new] Add `:zstd` compressor, new (faster) compressor backend, better docstrings
* e42e88c [new] Smarter, faster, protocol-based `freezable?` util
* 50ff9a2 [new] Add native `MapEntry` freezer
* f6cb430 [new] Add subvec to stress data
* Misc internal improvements


# `v3.3.0-RC2` (2023-09-25)

> 📦 [Available on Clojars](https://clojars.org/com.taoensso/nippy/versions/3.3.3-RC2)
> 📦 [Available on Clojars](https://clojars.org/com.taoensso/nippy/versions/3.3.0-RC2)
Identical to `v3.3.0-RC1` except:

- Improves some docstrings
- Improves generative unit tests
- Updates internal dependencies
* Improves some docstrings
* Improves generative unit tests
* Updates internal dependencies

If no unexpected problems come up, `v3.3.0` final is planned for release by the end of September.


# `v3.3.0-RC1` (2023-08-02)

> 📦 [Available on Clojars](https://clojars.org/com.taoensso/nippy/versions/3.3.3-RC1)
> 📦 [Available on Clojars](https://clojars.org/com.taoensso/nippy/versions/3.3.0-RC1)
This is a non-breaking **feature and maintenance** pre-release.
Please test carefully and report any unexpected problems, thank you! 🙏
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ Used by [Carmine](https://www.taoensso.com/carmine), [Faraday](https://www.taoen

## Latest release/s

- `2023-09-25` `3.3.0-RC2` (dev): [changes](../../releases/tag/v3.3.0-RC2)
- `2022-07-18` `3.2.0` (stable): [changes](../../releases/tag/v3.2.0)
- `2023-09-25` `3.3.0-RC2` (upcoming): [changes](../../releases/tag/v3.3.0-RC2)
- `2023-09-26` `3.4.0-beta1` (dev): [changes](../../releases/tag/v3.4.0-beta1)

[![Main tests][Main tests SVG]][Main tests URL]
[![Graal tests][Graal tests SVG]][Graal tests URL]
Expand All @@ -31,7 +32,7 @@ See [here][GitHub releases] for earlier releases.
- **Robust test suite**, incl. full coverage for every supported type
- Auto fallback to Java Serializable when available
- Auto fallback to Clojure Reader for all other types (including tagged literals
- Pluggable **compression** with built-in [LZ4](https://code.google.com/p/lz4/)
- Pluggable **compression** with built-in [LZ4](https://code.google.com/p/lz4/), [Zstandard](https://facebook.github.io/zstd/), etc.
- Pluggable [encryption](../../wiki/1-Getting-started#encryption) with built-in AES128
- [Tools](https://taoensso.github.io/nippy/taoensso.nippy.tools.html) for easy + robust **integration into 3rd-party libraries**, etc.
- Powerful [thaw transducer](https://taoensso.github.io/nippy/taoensso.nippy.html#var-*thaw-xform*) for flexible data inspection and transformation
Expand Down Expand Up @@ -81,4 +82,4 @@ Licensed under [EPL 1.0](LICENSE.txt) (same as Clojure).
[Main tests SVG]: https://github.com/taoensso/nippy/actions/workflows/main-tests.yml/badge.svg
[Main tests URL]: https://github.com/taoensso/nippy/actions/workflows/main-tests.yml
[Graal tests SVG]: https://github.com/taoensso/nippy/actions/workflows/graal-tests.yml/badge.svg
[Graal tests URL]: https://github.com/taoensso/nippy/actions/workflows/graal-tests.yml
[Graal tests URL]: https://github.com/taoensso/nippy/actions/workflows/graal-tests.yml
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.3.0-RC2"
(defproject com.taoensso/nippy "3.4.0-beta1"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "The fastest serialization library for Clojure"
:url "https://github.com/taoensso/nippy"
Expand Down

0 comments on commit 25a8bae

Please sign in to comment.