Skip to content

Commit 0d002f8

Browse files
committed
v3.4.0-beta1 (2023-09-26)
1 parent d566134 commit 0d002f8

File tree

3 files changed

+34
-10
lines changed

3 files changed

+34
-10
lines changed

CHANGELOG.md

Lines changed: 30 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,26 +35,49 @@ Please test carefully and report any unexpected problems, thank you! 🙏
3535

3636
---
3737

38+
# `v3.4.0-beta1` (2023-09-26)
39+
40+
> 📦 [Available on Clojars](https://clojars.org/com.taoensso/nippy/versions/3.4.0-beta1)
41+
42+
This is a non-breaking **feature** pre-release.
43+
Please **test carefully and report any unexpected problems**, thank you! 🙏
44+
45+
## New since `v3.3.0-RC2`
46+
47+
* 6ad5aeb [new] Add `:zstd` compressor, new (faster) compressor backend, better docstrings
48+
* fb6f75e [new] Smarter, faster, protocol-based `freezable?` util
49+
* f3ff7ae [new] Add native `MapEntry` freezer
50+
* fef079d [new] Add subvec to stress data
51+
* Misc internal improvements
52+
53+
## Other improvements since `v3.3.0-RC2`
54+
55+
* e0cd003 [nop] Update docs
56+
* 99970d5 [nop] Update benchmark results
57+
* bcf7673 [nop] Move benchmarks ns under tests dir
58+
59+
---
60+
3861
# `v3.3.0-RC2` (2023-09-25)
3962

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

44-
- Improves some docstrings
45-
- Improves generative unit tests
46-
- Updates internal dependencies
67+
* Improves some docstrings
68+
* Improves generative unit tests
69+
* Updates internal dependencies
4770

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

5073
---
5174

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

54-
> 📦 [Available on Clojars](https://clojars.org/com.taoensso/nippy/versions/3.3.3-RC1)
77+
> 📦 [Available on Clojars](https://clojars.org/com.taoensso/nippy/versions/3.3.0-RC1)
5578
5679
This is a non-breaking **feature and maintenance** pre-release.
57-
Please test carefully and report any unexpected problems, thank you! 🙏
80+
Please **test carefully and report any unexpected problems**, thank you! 🙏
5881

5982
## Fixes since `v3.2.0`
6083

@@ -290,4 +313,4 @@ Likely breaking. Please see [#130] for **detailed upgrade instructions**.
290313

291314
# Earlier releases
292315

293-
See [here](https://github.com/taoensso/nippy/releases) for earlier releases.
316+
See [here](https://github.com/taoensso/nippy/releases) for earlier releases.

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ Used by [Carmine](https://www.taoensso.com/carmine), [Faraday](https://www.taoen
1414

1515
## Latest release/s
1616

17-
- `2023-09-25` `3.3.0` (stable): [changes](../../releases/tag/v3.3.0)
17+
- `2023-10-11` `3.3.0` (stable): [changes](../../releases/tag/v3.3.0)
18+
- `2023-09-26` `3.4.0-beta1` (dev): [changes](../../releases/tag/v3.4.0-beta1)
1819

1920
[![Main tests][Main tests SVG]][Main tests URL]
2021
[![Graal tests][Graal tests SVG]][Graal tests URL]
@@ -30,7 +31,7 @@ See [here][GitHub releases] for earlier releases.
3031
- **Robust test suite**, incl. full coverage for every supported type
3132
- Auto fallback to Java Serializable when available
3233
- Auto fallback to Clojure Reader for all other types (including tagged literals
33-
- Pluggable **compression** with built-in [LZ4](https://code.google.com/p/lz4/)
34+
- Pluggable **compression** with built-in [LZ4](https://code.google.com/p/lz4/), [Zstandard](https://facebook.github.io/zstd/), etc.
3435
- Pluggable [encryption](../../wiki/1-Getting-started#encryption) with built-in AES128
3536
- [Tools](https://taoensso.github.io/nippy/taoensso.nippy.tools.html) for easy + robust **integration into 3rd-party libraries**, etc.
3637
- Powerful [thaw transducer](https://taoensso.github.io/nippy/taoensso.nippy.html#var-*thaw-xform*) for flexible data inspection and transformation

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso/nippy "3.3.0"
1+
(defproject com.taoensso/nippy "3.4.0-beta1"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "The fastest serialization library for Clojure"
44
:url "https://github.com/taoensso/nippy"

0 commit comments

Comments
 (0)