diff --git a/CHANGELOG.md b/CHANGELOG.md index 10798ea..2429107 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.1](https://github.com/Isvane/fuzzies/compare/v0.5.0...v0.5.1) - 2026-07-19 + +### Added + +- *(search)* implement Display for SearchResult + ## [0.5.0](https://github.com/Isvane/fuzzies/compare/v0.4.3...v0.5.0) - 2026-07-18 ### Added diff --git a/Cargo.lock b/Cargo.lock index d1405cd..8a63dae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -250,7 +250,7 @@ dependencies = [ [[package]] name = "fuzzies" -version = "0.5.0" +version = "0.5.1" dependencies = [ "criterion", "fst", diff --git a/Cargo.toml b/Cargo.toml index 03b0b8f..ebe2100 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuzzies" -version = "0.5.0" +version = "0.5.1" edition = "2024" description = "A fast, memory-mapped fuzzy search dictionary using FSTs and Levenshtein automata." license = "MIT"