Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Nov 16, 2021
1 parent 8e29e94 commit c0e8a2c
Show file tree
Hide file tree
Showing 17 changed files with 28 additions and 28 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ path = "src/bin/typos-cli/main.rs"
doc = false

[dependencies]
typos = { version = "^0.7", path = "crates/typos" }
typos = { version = "^0.8", path = "crates/typos" }
varcon-core = { version = "^2.0.0", path = "crates/varcon-core" }
typos-dict = { version = "^0.6", path = "crates/typos-dict", optional = true }
typos-vars = { version = "^0.7", path = "crates/typos-vars", optional = true }
typos-dict = { version = "^0.7", path = "crates/typos-dict", optional = true }
typos-vars = { version = "^0.8", path = "crates/typos-vars", optional = true }
unicase = "2.5"
anyhow = "1.0"
structopt = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion crates/codespell-dict/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ release = false

[dependencies]
unicase = "2.5"
dictgen = { version = "0.1", path = "../dictgen" }
dictgen = { version = "^0.2", path = "../dictgen" }
2 changes: 1 addition & 1 deletion crates/codespell-dict/codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ unicase = "2.5"
itertools = "0.10"
codegenrs = "1.0"
structopt = "0.3"
dictgen = { version = "0.1", path = "../../dictgen", features = ["codegen"] }
dictgen = { version = "^0.2", path = "../../dictgen", features = ["codegen"] }
2 changes: 1 addition & 1 deletion crates/dictgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dictgen"
version = "0.1.2"
version = "0.2.0"
description = "Compile-time case-insensitive map"
repository = "https://github.com/crate-ci/typos"
categories = ["development-tools", "text-processing"]
Expand Down
2 changes: 1 addition & 1 deletion crates/misspell-dict/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ release = false
[dependencies]
unicase = "2.5"
log = "0.4"
dictgen = { version = "0.1", path = "../dictgen" }
dictgen = { version = "^0.2", path = "../dictgen" }
2 changes: 1 addition & 1 deletion crates/misspell-dict/codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ itertools = "0.10"
codegenrs = "1.0"
structopt = "0.3"
regex = "1"
dictgen = { version = "0.1", path = "../../dictgen", features = ["codegen"] }
dictgen = { version = "^0.2", path = "../../dictgen", features = ["codegen"] }
4 changes: 2 additions & 2 deletions crates/typos-dict/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typos-dict"
version = "0.6.3"
version = "0.7.0"
description = "Source Code Spelling Correction"
authors = ["Ed Page <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -20,4 +20,4 @@ include = [
[dependencies]
unicase = "2.5"
log = "0.4"
dictgen = { version = "0.1", path = "../dictgen" }
dictgen = { version = "^0.2", path = "../dictgen" }
2 changes: 1 addition & 1 deletion crates/typos-dict/codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ itertools = "0.10"
unicase = "2.5"
codegenrs = "1.0"
structopt = "0.3"
dictgen = { version = "0.1", path = "../../dictgen", features = ["codegen"] }
dictgen = { version = "^0.2", path = "../../dictgen", features = ["codegen"] }
2 changes: 1 addition & 1 deletion crates/typos-dict/verify/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ csv = "1.1"
unicase = "2.5"
codegenrs = "1.0"
structopt = "0.3"
varcon = { version = "^0.5", path = "../../varcon" }
varcon = { version = "^0.6", path = "../../varcon" }
itertools = "0.10"
edit-distance = "2.1"
4 changes: 2 additions & 2 deletions crates/typos-vars/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typos-vars"
version = "0.7.2"
version = "0.8.0"
description = "Source Code Spelling Correction"
authors = ["Ed Page <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -20,5 +20,5 @@ include = [
[dependencies]
unicase = "2.5"
log = "0.4"
dictgen = { version = "0.1", path = "../dictgen" }
dictgen = { version = "^0.2", path = "../dictgen" }
varcon-core = { version = "^2.0", path = "../varcon-core", features = ["flags"] }
6 changes: 3 additions & 3 deletions crates/typos-vars/codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ publish = false
release = false

[dependencies]
varcon = { version = "^0.5", path = "../../varcon", features = ["flags"] }
varcon = { version = "^0.6", path = "../../varcon", features = ["flags"] }
varcon-core = { version = "^2.0", path = "../../varcon-core", features = ["flags"] }
typos = { version = "^0.7", path = "../../typos" }
typos = { version = "^0.8", path = "../../typos" }
unicase = "2.5"
codegenrs = "1.0"
structopt = "0.3"
Expand All @@ -25,4 +25,4 @@ log = "0.4"
env_logger = "0.9"
clap-verbosity-flag = "0.3"
itertools = "0.10"
dictgen = { version = "0.1", path = "../../dictgen", features = ["codegen"] }
dictgen = { version = "^0.2", path = "../../dictgen", features = ["codegen"] }
2 changes: 1 addition & 1 deletion crates/typos/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typos"
version = "0.7.5"
version = "0.8.0"
description = "Source Code Spelling Correction"
authors = ["Ed Page <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/varcon-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "varcon-core"
version = "2.1.1"
version = "2.2.0"
description = "Varcon-relevant data structures"
authors = ["Ed Page <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/varcon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "varcon"
version = "0.5.1"
version = "0.6.0"
description = "Source Code Spelling Correction"
authors = ["Ed Page <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/wikipedia-dict/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ release = false

[dependencies]
unicase = "2.5"
dictgen = { version = "0.1", path = "../dictgen" }
dictgen = { version = "^0.2", path = "../dictgen" }
2 changes: 1 addition & 1 deletion crates/wikipedia-dict/codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ unicase = "2.5"
itertools = "0.10"
codegenrs = "1.0"
structopt = "0.3"
dictgen = { version = "0.1", path = "../../dictgen", features = ["codegen"] }
dictgen = { version = "^0.2", path = "../../dictgen", features = ["codegen"] }

0 comments on commit c0e8a2c

Please sign in to comment.