Skip to content

Commit

Permalink
Version 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
huacnlee committed Oct 10, 2022
1 parent bb31cdf commit 9d77e49
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion autocorrect-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
name = "autocorrect-cli"
readme = "../README.md"
repository = "https://github.com/huacnlee/autocorrect"
version = "2.0.0"
version = "2.1.0"

[[bin]]
name = "autocorrect"
Expand Down
2 changes: 1 addition & 1 deletion autocorrect-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "autocorrect-wasm"
version = "2.0.0"
version = "2.1.0"

[lib]
crate-type = ["cdylib", "rlib"]
Expand Down
2 changes: 1 addition & 1 deletion autocorrect/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT"
name = "autocorrect"
readme = "../README.md"
repository = "https://github.com/huacnlee/autocorrect"
version = "2.0.0"
version = "2.1.0"

[lib]
name = "autocorrect"
Expand Down
2 changes: 1 addition & 1 deletion autocorrect/src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ impl Config {

// DEPRECATED: since 2.0.0, remove this in 2.1.0
if let Some(mode) = config.spellcheck.mode.clone() {
println!("DEPRECATED: `spellcheck.mode` use `rules.spellcheck` instead since 2.0.0, remove this in 2.1.0");
println!("DEPRECATED: `spellcheck.mode` use `rules.spellcheck` instead since 2.0.0");
self.spellcheck.mode = Some(mode.clone());
self.rules.insert("spellcheck".to_string(), mode);
}
Expand Down

0 comments on commit 9d77e49

Please sign in to comment.