Skip to content

Commit

Permalink
Release 0.73.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Action committed Nov 7, 2021
1 parent eaa6273 commit b79854f
Show file tree
Hide file tree
Showing 10 changed files with 44 additions and 38 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chalk"
version = "0.73.0-dev.0"
version = "0.73.0"
description = "Model of the Rust trait system"
license = "Apache-2.0/MIT"
authors = ["Rust Compiler Team", "Chalk developers"]
Expand All @@ -21,13 +21,13 @@ salsa = "0.16.0"
serde = "1.0"
serde_derive = "1.0"

chalk-derive = { version = "0.73.0-dev.0", path = "chalk-derive" }
chalk-engine = { version = "0.73.0-dev.0", path = "chalk-engine" }
chalk-ir = { version = "0.73.0-dev.0", path = "chalk-ir" }
chalk-solve = { version = "0.73.0-dev.0", path = "chalk-solve" }
chalk-recursive = { version = "0.73.0-dev.0", path = "chalk-recursive" }
chalk-parse = { version = "0.73.0-dev.0", path = "chalk-parse" }
chalk-integration = { version = "0.73.0-dev.0", path = "chalk-integration" }
chalk-derive = { version = "=0.73.0", path = "chalk-derive" }
chalk-engine = { version = "=0.73.0", path = "chalk-engine" }
chalk-ir = { version = "=0.73.0", path = "chalk-ir" }
chalk-solve = { version = "=0.73.0", path = "chalk-solve" }
chalk-recursive = { version = "=0.73.0", path = "chalk-recursive" }
chalk-parse = { version = "=0.73.0", path = "chalk-parse" }
chalk-integration = { version = "=0.73.0", path = "chalk-integration" }

[workspace]

Expand Down
6 changes: 6 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,14 @@ All notable changes to this project will be documented in this file. Dates are d
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog)
(Note: versions before 0.11.0 were manually generated).

#### [v0.73.0](https://github.com/rust-lang/chalk/compare/v0.72.0...v0.73.0)

- Fix broken markdown and intr-doc links in documentation [`#731`](https://github.com/rust-lang/chalk/pull/731)

#### [v0.72.0](https://github.com/rust-lang/chalk/compare/v0.71.0...v0.72.0)

> 10 October 2021
- Replace `ControlFlow` with version in std [`#729`](https://github.com/rust-lang/chalk/pull/729)
- Regenerate lockfile to fix tests in nightly [`#730`](https://github.com/rust-lang/chalk/pull/730)

Expand Down
2 changes: 1 addition & 1 deletion chalk-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chalk-derive"
version = "0.73.0-dev.0"
version = "0.73.0"
description = "A helper crate for use by chalk crates for `derive` macros."
license = "Apache-2.0/MIT"
authors = ["Rust Compiler Team", "Chalk developers"]
Expand Down
8 changes: 4 additions & 4 deletions chalk-engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chalk-engine"
version = "0.73.0-dev.0"
version = "0.73.0"
description = "Core trait engine from Chalk project"
license = "Apache-2.0/MIT"
authors = ["Rust Compiler Team", "Chalk developers"]
Expand All @@ -16,9 +16,9 @@ default = []
rustc-hash = { version = "1.1.0" }
tracing = "0.1"

chalk-derive = { version = "0.73.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.73.0-dev.0", path = "../chalk-ir" }
chalk-solve = { version = "0.73.0-dev.0", path = "../chalk-solve" }
chalk-derive = { version = "=0.73.0", path = "../chalk-derive" }
chalk-ir = { version = "=0.73.0", path = "../chalk-ir" }
chalk-solve = { version = "=0.73.0", path = "../chalk-solve" }

[dev-dependencies]
chalk-integration = { path = "../chalk-integration" }
14 changes: 7 additions & 7 deletions chalk-integration/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chalk-integration"
version = "0.73.0-dev.0"
version = "0.73.0"
license = "Apache-2.0/MIT"
description = "Sample solver setup for Chalk"
authors = ["Rust Compiler Team", "Chalk developers"]
Expand All @@ -14,9 +14,9 @@ string_cache = "0.8.0"
salsa = "0.16.0"
tracing = "0.1"

chalk-derive = { version = "0.73.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.73.0-dev.0", path = "../chalk-ir" }
chalk-solve = { version = "0.73.0-dev.0", path = "../chalk-solve" }
chalk-recursive = { version = "0.73.0-dev.0", path = "../chalk-recursive" }
chalk-engine = { version = "0.73.0-dev.0", path = "../chalk-engine" }
chalk-parse = { version = "0.73.0-dev.0", path = "../chalk-parse" }
chalk-derive = { version = "=0.73.0", path = "../chalk-derive" }
chalk-ir = { version = "=0.73.0", path = "../chalk-ir" }
chalk-solve = { version = "=0.73.0", path = "../chalk-solve" }
chalk-recursive = { version = "=0.73.0", path = "../chalk-recursive" }
chalk-engine = { version = "=0.73.0", path = "../chalk-engine" }
chalk-parse = { version = "=0.73.0", path = "../chalk-parse" }
4 changes: 2 additions & 2 deletions chalk-ir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chalk-ir"
version = "0.73.0-dev.0"
version = "0.73.0"
description = "Chalk's internal representation of types, goals, and clauses"
license = "Apache-2.0/MIT"
authors = ["Rust Compiler Team", "Chalk developers"]
Expand All @@ -12,4 +12,4 @@ edition = "2018"
[dependencies]
lazy_static = "1.4.0"
bitflags = "1.2.1"
chalk-derive = { version = "0.73.0-dev.0", path = "../chalk-derive" }
chalk-derive = { version = "=0.73.0", path = "../chalk-derive" }
2 changes: 1 addition & 1 deletion chalk-parse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chalk-parse"
version = "0.73.0-dev.0"
version = "0.73.0"
description = "Parser for the Chalk project"
license = "Apache-2.0/MIT"
authors = ["Rust Compiler Team", "Chalk developers"]
Expand Down
8 changes: 4 additions & 4 deletions chalk-recursive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chalk-recursive"
version = "0.73.0-dev.0"
version = "0.73.0"
description = "Recursive solver for the Chalk project"
license = "Apache-2.0/MIT"
authors = ["Rust Compiler Team", "Chalk developers"]
Expand All @@ -13,9 +13,9 @@ edition = "2018"
rustc-hash = { version = "1.1.0" }
tracing = "0.1"

chalk-derive = { version = "0.73.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.73.0-dev.0", path = "../chalk-ir" }
chalk-solve = { version = "0.73.0-dev.0", path = "../chalk-solve", default-features = false }
chalk-derive = { version = "=0.73.0", path = "../chalk-derive" }
chalk-ir = { version = "=0.73.0", path = "../chalk-ir" }
chalk-solve = { version = "=0.73.0", path = "../chalk-solve", default-features = false }

[dev-dependencies]
chalk-integration = { path = "../chalk-integration" }
Expand Down
6 changes: 3 additions & 3 deletions chalk-solve/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chalk-solve"
version = "0.73.0-dev.0"
version = "0.73.0"
description = "Combines the chalk-engine with chalk-ir"
license = "Apache-2.0/MIT"
authors = ["Rust Compiler Team", "Chalk developers"]
Expand All @@ -18,8 +18,8 @@ tracing-subscriber = { version = "0.2", optional = true }
tracing-tree = { version = "0.1.4", optional = true }
rustc-hash = { version = "1.1.0" }

chalk-derive = { version = "0.73.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.73.0-dev.0", path = "../chalk-ir" }
chalk-derive = { version = "=0.73.0", path = "../chalk-derive" }
chalk-ir = { version = "=0.73.0", path = "../chalk-ir" }

[dev-dependencies]
chalk-integration = { path = "../chalk-integration" }
Expand Down

0 comments on commit b79854f

Please sign in to comment.