Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Ed Page committed May 13, 2021
1 parent 183f153 commit 7c80368
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.3.0] - 2021-05-13

#### Bug Fixes

- Parsing identifiers according to the Unicode XID standard
Expand Down Expand Up @@ -70,5 +72,6 @@ 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.2.0...HEAD
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v0.3.0...HEAD
[0.3.0]: https://github.com/assert-rs/predicates-rs/compare/v0.2.0...v0.3.0
[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.2.0"
version = "0.3.0"
authors = ["Ed Page <[email protected]>"]
description = "Source Code Spelling Correction"
repository = "https://github.com/crate-ci/typos"
Expand Down Expand Up @@ -48,10 +48,10 @@ azure-devops = { project = "crate-ci", pipeline = "typos" }
codecov = { repository = "crate-ci/typos" }

[dependencies]
typos = { version = "^0.4", path = "crates/typos" }
typos = { version = "^0.5", path = "crates/typos" }
varcon-core = { version = "1.1.0", path = "crates/varcon-core" }
typos-dict = { version = "^0.3", path = "crates/typos-dict", optional = true }
typos-vars = { version = "^0.3", path = "crates/typos-vars", optional = true }
typos-dict = { version = "^0.4", path = "crates/typos-dict", optional = true }
typos-vars = { version = "^0.4", path = "crates/typos-vars", optional = true }
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.2.0"
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/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.2.0"
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/misspell-dict/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "misspell-dict"
version = "0.2.0"
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/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.2.0"
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/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typos-dict"
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/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.1.0"
version = "1.2.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.1.0"
version = "1.2.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 = "1.0"
structopt = "0.3"
varcon = { version = "^0.3", path = "../../varcon" }
varcon = { version = "^0.4", 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.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
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.1.0"
version = "1.2.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.3", path = "../../varcon", features = ["flags"] }
varcon = { version = "^0.4", path = "../../varcon", features = ["flags"] }
varcon-core = { version = "1.0", path = "../../varcon-core", features = ["flags"] }
typos = { version = "^0.4", path = "../../typos" }
typos = { version = "^0.5", path = "../../typos" }
unicase = "2.5"
codegenrs = "1.0"
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.4.0"
version = "0.5.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.1.0"
version = "1.2.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.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/codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "varcon-codegen"
version = "1.1.0"
version = "1.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/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wikipedia-dict"
version = "0.2.0"
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/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.2.0"
version = "0.3.0"
authors = ["Ed Page <[email protected]>"]
description = "Source Code Spelling Correction"
repository = "https://github.com/crate-ci/typos"
Expand Down

0 comments on commit 7c80368

Please sign in to comment.