Skip to content

Commit

Permalink
chore({{crate_name}}): Release {{version}}
Browse files Browse the repository at this point in the history
  • Loading branch information
Ed Page committed Apr 15, 2021
1 parent b4459be commit 1f4c587
Show file tree
Hide file tree
Showing 18 changed files with 42 additions and 39 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate

## [0.2.0] - 2021-04-14

#### Bug Fixes

- Improve accuracy of typo column number
Expand Down Expand Up @@ -52,4 +54,5 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
* Only do hex check if digits are in identifiers ([68cd36d0](https://github.com/crate-ci/typos/commit/68cd36d0de90226dbc9d31c2ce6d8bf6b69adb5c))

<!-- next-url -->
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v0.1.4...HEAD
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/assert-rs/predicates-rs/compare/v0.1.4...v0.2.0
32 changes: 16 additions & 16 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ members = [

[package]
name = "typos-cli"
version = "0.1.4"
version = "0.2.0"
authors = ["Ed Page <[email protected]>"]
description = "Source Code Spelling Correction"
repository = "https://github.com/crate-ci/typos"
Expand Down Expand Up @@ -40,9 +40,9 @@ azure-devops = { project = "crate-ci", pipeline = "typos" }
codecov = { repository = "crate-ci/typos" }

[dependencies]
typos = { version = "^0.3", path = "crates/typos" }
typos-dict = { version = "^0.2", path = "crates/typos-dict" }
typos-vars = { version = "^0.2", path = "crates/typos-vars" }
typos = { version = "^0.4", path = "crates/typos" }
typos-dict = { version = "^0.3", path = "crates/typos-dict" }
typos-vars = { version = "^0.3", path = "crates/typos-vars" }
phf = { version = "0.8", features = ["unicase"] }
unicase = "2.5"
anyhow = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/codespell-dict/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "codespell-dict"
version = "0.1.2"
version = "0.2.0"
authors = ["Ed Page <[email protected]>"]
description = "Source Code Spelling Correction"
repository = "https://github.com/crate-ci/typos"
Expand Down
2 changes: 1 addition & 1 deletion crates/codespell-dict/codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "codespell-codegen"
version = "0.1.2"
version = "0.2.0"
authors = ["Ed Page <[email protected]>"]
description = "Source Code Spelling Correction"
repository = "https://github.com/crate-ci/typos"
Expand Down
2 changes: 1 addition & 1 deletion crates/misspell-dict/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "misspell-dict"
version = "0.1.2"
version = "0.2.0"
authors = ["Ed Page <[email protected]>"]
description = "Source Code Spelling Correction"
repository = "https://github.com/crate-ci/typos"
Expand Down
2 changes: 1 addition & 1 deletion crates/misspell-dict/codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "misspell-codegen"
version = "0.1.2"
version = "0.2.0"
authors = ["Ed Page <[email protected]>"]
description = "Source Code Spelling Correction"
repository = "https://github.com/crate-ci/typos"
Expand Down
2 changes: 1 addition & 1 deletion 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.2.1"
version = "0.3.0"
authors = ["Ed Page <[email protected]>"]
description = "Source Code Spelling Correction"
repository = "https://github.com/crate-ci/typos"
Expand Down
2 changes: 1 addition & 1 deletion crates/typos-dict/codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typos-dict-codegen"
version = "1.0.2"
version = "1.1.0"
authors = ["Ed Page <[email protected]>"]
description = "Source Code Spelling Correction"
repository = "https://github.com/crate-ci/typos"
Expand Down
4 changes: 2 additions & 2 deletions crates/typos-dict/verify/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typos-dict-verify"
version = "1.0.2"
version = "1.1.0"
authors = ["Ed Page <[email protected]>"]
description = "Source Code Spelling Correction"
repository = "https://github.com/crate-ci/typos"
Expand All @@ -19,6 +19,6 @@ csv = "1.1"
unicase = "2.5"
codegenrs = "0.1"
structopt = "0.3"
varcon = { version = "0.2", path = "../../varcon" }
varcon = { version = "^0.3", path = "../../varcon" }
itertools = "0.10"
edit-distance = "2.1"
2 changes: 1 addition & 1 deletion 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.2.1"
version = "0.3.0"
authors = ["Ed Page <[email protected]>"]
description = "Source Code Spelling Correction"
repository = "https://github.com/crate-ci/typos"
Expand Down
6 changes: 3 additions & 3 deletions crates/typos-vars/codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typos-vars-codegen"
version = "1.0.2"
version = "1.1.0"
authors = ["Ed Page <[email protected]>"]
description = "Source Code Spelling Correction"
repository = "https://github.com/crate-ci/typos"
Expand All @@ -17,9 +17,9 @@ codecov = { repository = "crate-ci/typos" }
[dependencies]
phf = { version = "0.8", features = ["unicase"] }
phf_codegen = "0.8"
varcon = { version = "0.2", path = "../../varcon", features = ["flags"] }
varcon = { version = "^0.3", path = "../../varcon", features = ["flags"] }
varcon-core = { version = "1.0", path = "../../varcon-core", features = ["flags"] }
typos = { version = "^0.3", path = "../../typos" }
typos = { version = "^0.4", path = "../../typos" }
unicase = "2.5"
codegenrs = "0.1"
structopt = "0.3"
Expand Down
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.3.0"
version = "0.4.0"
authors = ["Ed Page <[email protected]>"]
description = "Source Code Spelling Correction"
repository = "https://github.com/crate-ci/typos"
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 = "1.0.0"
version = "1.1.0"
authors = ["Ed Page <[email protected]>"]
description = "Varcon-relevant data structures"
repository = "https://github.com/crate-ci/typos"
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.2.1"
version = "0.3.0"
authors = ["Ed Page <[email protected]>"]
description = "Source Code Spelling Correction"
repository = "https://github.com/crate-ci/typos"
Expand Down
2 changes: 1 addition & 1 deletion crates/varcon/codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "varcon-codegen"
version = "1.0.2"
version = "1.1.0"
authors = ["Ed Page <[email protected]>"]
description = "Source Code Spelling Correction"
repository = "https://github.com/crate-ci/typos"
Expand Down
2 changes: 1 addition & 1 deletion crates/wikipedia-dict/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wikipedia-dict"
version = "0.1.1"
version = "0.2.0"
authors = ["Ed Page <[email protected]>"]
description = "Source Code Spelling Correction"
repository = "https://github.com/crate-ci/typos"
Expand Down
2 changes: 1 addition & 1 deletion crates/wikipedia-dict/codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wikipedia-codegen"
version = "0.1.1"
version = "0.2.0"
authors = ["Ed Page <[email protected]>"]
description = "Source Code Spelling Correction"
repository = "https://github.com/crate-ci/typos"
Expand Down

0 comments on commit 1f4c587

Please sign in to comment.