From 7e17e46e1a6c35ba99c0967cb5bb7684e4aee37c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Jul 2026 13:19:28 +0000 Subject: [PATCH 1/2] chore: release v0.5.0 --- CHANGELOG.md | 15 +++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e3b51f5..4905683 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.0](https://github.com/Isvane/fuzzies/compare/v0.4.3...v0.5.0) - 2026-07-18 + +### Added + +- *(search)* [**breaking**] refactor batch_search to use builder pattern ([#55](https://github.com/Isvane/fuzzies/pull/55)) + +### Other + +- update .release-plz.toml +- update release-plz.toml + +### Refactored + +- [**breaking**] encapsulate internal FST types and streamline docstrings + ## [0.4.3](https://github.com/Isvane/fuzzies/compare/v0.4.2...v0.4.3) - 2026-07-17 ### Added diff --git a/Cargo.lock b/Cargo.lock index 77ba889..d1405cd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -250,7 +250,7 @@ dependencies = [ [[package]] name = "fuzzies" -version = "0.4.3" +version = "0.5.0" dependencies = [ "criterion", "fst", diff --git a/Cargo.toml b/Cargo.toml index 287e99a..03b0b8f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuzzies" -version = "0.4.3" +version = "0.5.0" edition = "2024" description = "A fast, memory-mapped fuzzy search dictionary using FSTs and Levenshtein automata." license = "MIT" From 027c7c7dbb905bdb6a11974544114a49b0003756 Mon Sep 17 00:00:00 2001 From: Phantasia <277444536+Isvane@users.noreply.github.com> Date: Sat, 18 Jul 2026 20:20:45 +0700 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4905683..10798ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - update .release-plz.toml -- update release-plz.toml ### Refactored