diff --git a/CHANGELOG.md b/CHANGELOG.md index 2429107..fb8f545 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.2](https://github.com/Isvane/fuzzies/compare/v0.5.1...v0.5.2) - 2026-07-19 + +### Documentation + +- fix docs error + +### Fixed + +- *(search)* transposition priority over alphabetical ties + ## [0.5.1](https://github.com/Isvane/fuzzies/compare/v0.5.0...v0.5.1) - 2026-07-19 ### Added diff --git a/Cargo.lock b/Cargo.lock index 8a63dae..e662338 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -250,7 +250,7 @@ dependencies = [ [[package]] name = "fuzzies" -version = "0.5.1" +version = "0.5.2" dependencies = [ "criterion", "fst", diff --git a/Cargo.toml b/Cargo.toml index ebe2100..cd102d2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuzzies" -version = "0.5.1" +version = "0.5.2" edition = "2024" description = "A fast, memory-mapped fuzzy search dictionary using FSTs and Levenshtein automata." license = "MIT"