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"