From e614b609a99c44320f6dfb66f62b15fbe391c84e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 16 Aug 2024 18:17:11 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 06985fd..ac44fdf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.2](https://github.com/spiraldb/fsst/compare/v0.0.1...v0.0.2) - 2024-08-16 + +### Added +- separate Compressor and Decompressor ([#11](https://github.com/spiraldb/fsst/pull/11)) + +### Other +- add badges ([#10](https://github.com/spiraldb/fsst/pull/10)) +- release v0.0.1 ([#8](https://github.com/spiraldb/fsst/pull/8)) + ## [0.0.1](https://github.com/spiraldb/fsst/releases/tag/v0.0.1) - 2024-08-15 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 43d9b08..f3d17e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -174,7 +174,7 @@ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" [[package]] name = "fsst-rs" -version = "0.0.1" +version = "0.0.2" dependencies = [ "criterion", ] diff --git a/Cargo.toml b/Cargo.toml index 7108617..b7c9d78 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fsst-rs" -version = "0.0.1" +version = "0.0.2" description = "Pure-Rust implementation of Fast Static Symbol Tables algorithm for string compression" authors = ["SpiralDB Developers "] license = "Apache-2.0"