From d9b130ec88523ecaae746b03106fc7fefe126167 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 26 Jul 2026 16:17:20 +0000 Subject: [PATCH] chore: release v0.5.3 --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb8f545..1ce9e2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.3](https://github.com/Isvane/fuzzies/compare/v0.5.2...v0.5.3) - 2026-07-26 + +### Added + +- *(search)* add range bound filters ([#59](https://github.com/Isvane/fuzzies/pull/59)) +- *(dictionary)* add `len` and `is_empty` methods + +### Documentation + +- update README.md + ## [0.5.2](https://github.com/Isvane/fuzzies/compare/v0.5.1...v0.5.2) - 2026-07-19 ### Documentation diff --git a/Cargo.lock b/Cargo.lock index e662338..649023b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -250,7 +250,7 @@ dependencies = [ [[package]] name = "fuzzies" -version = "0.5.2" +version = "0.5.3" dependencies = [ "criterion", "fst", diff --git a/Cargo.toml b/Cargo.toml index cd102d2..84799b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuzzies" -version = "0.5.2" +version = "0.5.3" edition = "2024" description = "A fast, memory-mapped fuzzy search dictionary using FSTs and Levenshtein automata." license = "MIT"