diff --git a/CHANGELOG.md b/CHANGELOG.md index 85170f4..7a3e1bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ ### Added +### Changed + +### Removed + + + +## [0.5.2] - 2023-10-30 + +### Added + Add a `zspell::builder()` shortcut for `DictBuilder::new()`. @@ -174,7 +184,8 @@ Minor bups in the dependency list - Behind the scenes work to prepare for automatic dictionary location -[Unreleased]: https://github.com/pluots/zspell/compare/v0.5.1...HEAD +[Unreleased]: https://github.com/pluots/zspell/compare/v0.5.2...HEAD +[0.5.2]: https://github.com/pluots/zspell/compare/v0.5.1...v0.5.2 [0.5.1]: https://github.com/pluots/zspell/compare/v0.5.0...v0.5.1 [0.5.0]: https://github.com/pluots/zspell/compare/v0.4.1...v0.5.0 [0.4.1]: https://github.com/pluots/zspell/compare/v0.4.0...v0.4.1 diff --git a/Cargo.lock b/Cargo.lock index db06401..6aed26a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2376,7 +2376,7 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" [[package]] name = "test-util" -version = "0.5.1" +version = "0.5.2" dependencies = [ "pretty_assertions", "regex", @@ -2989,7 +2989,7 @@ dependencies = [ [[package]] name = "zspell" -version = "0.5.1" +version = "0.5.2" dependencies = [ "autocfg", "cfg-if", @@ -3013,7 +3013,7 @@ dependencies = [ [[package]] name = "zspell-cli" -version = "0.5.1" +version = "0.5.2" dependencies = [ "anyhow", "assert_cmd", @@ -3041,7 +3041,7 @@ dependencies = [ [[package]] name = "zspell-py" -version = "0.5.1" +version = "0.5.2" dependencies = [ "pyo3", "pyo3-build-config", diff --git a/zspell-cli/Cargo.toml b/zspell-cli/Cargo.toml index 2a53f13..9b020cc 100644 --- a/zspell-cli/Cargo.toml +++ b/zspell-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zspell-cli" -version = "0.5.1" +version = "0.5.2" edition = "2021" publish = true description = "Command line interface for the ZSpell spellchecking library" @@ -37,7 +37,7 @@ stringmetrics = "2.2" termcolor = "1.3.0" tokio = "1.33.0" anyhow = "1.0.75" -zspell = { path = "../zspell", version = "0.5.1", features = ["zspell-unstable"] } +zspell = { path = "../zspell", version = "0.5.2", features = ["zspell-unstable"] } [dev-dependencies] criterion = "0.5" diff --git a/zspell-py/Cargo.toml b/zspell-py/Cargo.toml index d8e74e4..b704f18 100644 --- a/zspell-py/Cargo.toml +++ b/zspell-py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zspell-py" -version = "0.5.1" +version = "0.5.2" edition = "2021" publish = false diff --git a/zspell/Cargo.toml b/zspell/Cargo.toml index 8bc30d2..ed0da86 100644 --- a/zspell/Cargo.toml +++ b/zspell/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zspell" -version = "0.5.1" +version = "0.5.2" edition = "2021" authors = ["Trevor Gross "] description = "Native Rust library for spellchecking" diff --git a/zspell/test-util/Cargo.toml b/zspell/test-util/Cargo.toml index 9b24dbe..2052a20 100644 --- a/zspell/test-util/Cargo.toml +++ b/zspell/test-util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-util" -version = "0.5.1" +version = "0.5.2" edition = "2021" publish = false