Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update changelog #86

Merged
merged 2 commits into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@



## [0.5.2] - 2023-10-30

### Added

Add a `zspell::builder()` shortcut for `DictBuilder::new()`.


## [0.5.1] - 2023-10-30

Expand Down Expand Up @@ -178,7 +184,8 @@ Minor bups in the dependency list
- Behind the scenes work to prepare for automatic dictionary location

<!-- next-url -->
[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
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions zspell-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion zspell-py/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zspell-py"
version = "0.5.1"
version = "0.5.2"
edition = "2021"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion zspell/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zspell"
version = "0.5.1"
version = "0.5.2"
edition = "2021"
authors = ["Trevor Gross <tmgross@umich.edu>"]
description = "Native Rust library for spellchecking"
Expand Down
2 changes: 1 addition & 1 deletion zspell/test-util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-util"
version = "0.5.1"
version = "0.5.2"
edition = "2021"
publish = false

Expand Down
Loading