diff --git a/CHANGELOG.md b/CHANGELOG.md index 2264f3b..520bd21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/spiraldb/fsst/compare/v0.2.0...v0.2.1) - 2024-08-20 + +### Added +- make Compressor::train 2x faster with bitmap index ([#16](https://github.com/spiraldb/fsst/pull/16)) + ## [0.2.0](https://github.com/spiraldb/fsst/compare/v0.1.0...v0.2.0) - 2024-08-20 ### Other diff --git a/Cargo.lock b/Cargo.lock index 0052684..a6e41af 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -174,7 +174,7 @@ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" [[package]] name = "fsst-rs" -version = "0.2.0" +version = "0.2.1" dependencies = [ "criterion", ] diff --git a/Cargo.toml b/Cargo.toml index da79798..8157245 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fsst-rs" -version = "0.2.0" +version = "0.2.1" description = "Pure-Rust implementation of Fast Static Symbol Tables algorithm for string compression" authors = ["SpiralDB Developers "] license = "Apache-2.0"