From 655f71236028384c3a3ecf7ffe838286ae167d07 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 31 Jan 2025 18:49:28 -0500
Subject: [PATCH] chore: release v0.5.0 (#65)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## 🤖 New release
* `fsst-rs`: 0.4.4 -> 0.5.0 (⚠️ API breaking changes)
### ⚠️ `fsst-rs` breaking changes
```
--- failure inherent_method_unsafe_added: pub method became unsafe ---
Description:
A publicly-visible method or associated fn became `unsafe`, so calling it now requires an `unsafe` block.
ref: https://doc.rust-lang.org/book/ch19-01-unsafe-rust.html#calling-an-unsafe-function-or-method
impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.38.0/src/lints/inherent_method_unsafe_added.ron
Failed in:
Decompressor::decompress_into in /tmp/.tmp4jgDWL/fsst/src/lib.rs:290
```
Changelog
## [0.5.0](https://github.com/spiraldb/fsst/compare/v0.4.4...v0.5.0) -
2025-01-31
### Added
- allow specifying exact size of decompress buffer (#70)
---
This PR was generated with
[release-plz](https://github.com/release-plz/release-plz/).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
---
CHANGELOG.md | 6 ++++++
Cargo.lock | 2 +-
Cargo.toml | 2 +-
3 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 414e07d..07b8901 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
+## [0.5.0](https://github.com/spiraldb/fsst/compare/v0.4.4...v0.5.0) - 2025-01-31
+
+### Added
+
+- allow specifying exact size of decompress buffer (#70)
+
## [0.4.4](https://github.com/spiraldb/fsst/compare/v0.4.3...v0.4.4) - 2024-12-30
### Added
diff --git a/Cargo.lock b/Cargo.lock
index d617d0f..47f7118 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -213,7 +213,7 @@ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
[[package]]
name = "fsst-rs"
-version = "0.4.4"
+version = "0.5.0"
dependencies = [
"criterion",
"curl",
diff --git a/Cargo.toml b/Cargo.toml
index e5835ff..1246855 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "fsst-rs"
-version = "0.4.4"
+version = "0.5.0"
description = "Pure-Rust implementation of Fast Static Symbol Tables algorithm for string compression"
authors = ["SpiralDB Developers "]
license = "Apache-2.0"