Skip to content

Commit

Permalink
Release 0.83.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Action committed Jun 26, 2022
1 parent 4991b7d commit b3c6be1
Show file tree
Hide file tree
Showing 10 changed files with 48 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.83.0-dev.0"
version = "0.83.0"
description = "Model of the Rust trait system"
license = "MIT OR Apache-2.0"
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.83.0-dev.0", path = "chalk-derive" }
chalk-engine = { version = "0.83.0-dev.0", path = "chalk-engine" }
chalk-ir = { version = "0.83.0-dev.0", path = "chalk-ir" }
chalk-solve = { version = "0.83.0-dev.0", path = "chalk-solve" }
chalk-recursive = { version = "0.83.0-dev.0", path = "chalk-recursive" }
chalk-parse = { version = "0.83.0-dev.0", path = "chalk-parse" }
chalk-integration = { version = "0.83.0-dev.0", path = "chalk-integration" }
chalk-derive = { version = "=0.83.0", path = "chalk-derive" }
chalk-engine = { version = "=0.83.0", path = "chalk-engine" }
chalk-ir = { version = "=0.83.0", path = "chalk-ir" }
chalk-solve = { version = "=0.83.0", path = "chalk-solve" }
chalk-recursive = { version = "=0.83.0", path = "chalk-recursive" }
chalk-parse = { version = "=0.83.0", path = "chalk-parse" }
chalk-integration = { version = "=0.83.0", path = "chalk-integration" }

[workspace]

Expand Down
10 changes: 10 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,18 @@ 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.83.0](https://github.com/rust-lang/chalk/compare/v0.82.0...v0.83.0)

- Remove unused Result assoc type from Fold trait [`#768`](https://github.com/rust-lang/chalk/pull/768)
- Rename folding/visiting traits [`#767`](https://github.com/rust-lang/chalk/pull/767)
- Detect dark theme for mermaid diagrams [`#770`](https://github.com/rust-lang/chalk/pull/770)
- Add workaround for GitHub doc url's returning 403 [`#769`](https://github.com/rust-lang/chalk/pull/769)
- Typo [`#765`](https://github.com/rust-lang/chalk/pull/765)

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

> 12 April 2022
- we only need to prove things one way [`#754`](https://github.com/rust-lang/chalk/pull/754)

#### [v0.81.0](https://github.com/rust-lang/chalk/compare/v0.80.0...v0.81.0)
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.83.0-dev.0"
version = "0.83.0"
description = "A helper crate for use by chalk crates for `derive` macros."
license = "MIT OR Apache-2.0"
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.83.0-dev.0"
version = "0.83.0"
description = "Core trait engine from Chalk project"
license = "MIT OR Apache-2.0"
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.83.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.83.0-dev.0", path = "../chalk-ir" }
chalk-solve = { version = "0.83.0-dev.0", path = "../chalk-solve" }
chalk-derive = { version = "=0.83.0", path = "../chalk-derive" }
chalk-ir = { version = "=0.83.0", path = "../chalk-ir" }
chalk-solve = { version = "=0.83.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.83.0-dev.0"
version = "0.83.0"
license = "MIT OR Apache-2.0"
description = "Sample solver setup for Chalk"
authors = ["Rust Compiler Team", "Chalk developers"]
Expand All @@ -14,10 +14,10 @@ string_cache = "0.8.0"
salsa = "0.16.0"
tracing = "0.1"

chalk-derive = { version = "0.83.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.83.0-dev.0", path = "../chalk-ir" }
chalk-solve = { version = "0.83.0-dev.0", path = "../chalk-solve" }
chalk-recursive = { version = "0.83.0-dev.0", path = "../chalk-recursive" }
chalk-engine = { version = "0.83.0-dev.0", path = "../chalk-engine" }
chalk-parse = { version = "0.83.0-dev.0", path = "../chalk-parse" }
chalk-derive = { version = "=0.83.0", path = "../chalk-derive" }
chalk-ir = { version = "=0.83.0", path = "../chalk-ir" }
chalk-solve = { version = "=0.83.0", path = "../chalk-solve" }
chalk-recursive = { version = "=0.83.0", path = "../chalk-recursive" }
chalk-engine = { version = "=0.83.0", path = "../chalk-engine" }
chalk-parse = { version = "=0.83.0", path = "../chalk-parse" }
indexmap = "1.8.0"
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.83.0-dev.0"
version = "0.83.0"
description = "Chalk's internal representation of types, goals, and clauses"
license = "MIT OR Apache-2.0"
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.83.0-dev.0", path = "../chalk-derive" }
chalk-derive = { version = "=0.83.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.83.0-dev.0"
version = "0.83.0"
description = "Parser for the Chalk project"
license = "MIT OR Apache-2.0"
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.83.0-dev.0"
version = "0.83.0"
description = "Recursive solver for the Chalk project"
license = "MIT OR Apache-2.0"
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.83.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.83.0-dev.0", path = "../chalk-ir" }
chalk-solve = { version = "0.83.0-dev.0", path = "../chalk-solve", default-features = false }
chalk-derive = { version = "=0.83.0", path = "../chalk-derive" }
chalk-ir = { version = "=0.83.0", path = "../chalk-ir" }
chalk-solve = { version = "=0.83.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.83.0-dev.0"
version = "0.83.0"
description = "Combines the chalk-engine with chalk-ir"
license = "MIT OR Apache-2.0"
authors = ["Rust Compiler Team", "Chalk developers"]
Expand All @@ -18,8 +18,8 @@ tracing-subscriber = { version = "0.3", optional = true, features = ["env-filter
tracing-tree = { version = "0.2", optional = true }
rustc-hash = { version = "1.1.0" }

chalk-derive = { version = "0.83.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.83.0-dev.0", path = "../chalk-ir" }
chalk-derive = { version = "=0.83.0", path = "../chalk-derive" }
chalk-ir = { version = "=0.83.0", path = "../chalk-ir" }
indexmap = "1.8.0"

[dev-dependencies]
Expand Down

0 comments on commit b3c6be1

Please sign in to comment.