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

chore: Release #99

Merged
merged 1 commit into from
Dec 13, 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
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@

## [Unreleased] - ReleaseDate

### Added

### Changed

### Removed



## [0.5.3] - 2023-12-13

### Changed

- Fix duplicate flag issue loading the German dictionary from
Expand Down Expand Up @@ -182,7 +192,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.2...HEAD
[Unreleased]: https://github.com/pluots/zspell/compare/v0.5.3...HEAD
[0.5.3]: https://github.com/pluots/zspell/compare/v0.5.2...v0.5.3
[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
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.2"
version = "0.5.3"
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.2", features = ["zspell-unstable"] }
zspell = { path = "../zspell", version = "0.5.3", 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.2"
version = "0.5.3"
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.2"
version = "0.5.3"
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.2"
version = "0.5.3"
edition = "2021"
publish = false

Expand Down
Loading