diff --git a/CHANGELOG.md b/CHANGELOG.md index dae59f4..45613a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.2](https://github.com/spiraldb/fsst/compare/v0.4.1...v0.4.2) - 2024-09-17 + +### Fixed + +- search for first non-empty chunk ([#35](https://github.com/spiraldb/fsst/pull/35)) +- docs first3 ([#33](https://github.com/spiraldb/fsst/pull/33)) + +### Other + +- Assertion should allow empty compression ([#36](https://github.com/spiraldb/fsst/pull/36)) + ## [0.4.1](https://github.com/spiraldb/fsst/compare/v0.4.0...v0.4.1) - 2024-09-12 ### Other diff --git a/Cargo.lock b/Cargo.lock index 2a766d6..4d183f2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -213,7 +213,7 @@ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" [[package]] name = "fsst-rs" -version = "0.4.1" +version = "0.4.2" dependencies = [ "criterion", "curl", diff --git a/Cargo.toml b/Cargo.toml index 0981314..6f145cd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fsst-rs" -version = "0.4.1" +version = "0.4.2" description = "Pure-Rust implementation of Fast Static Symbol Tables algorithm for string compression" authors = ["SpiralDB Developers "] license = "Apache-2.0"