Skip to content

Commit 6d7dad4

Browse files
author
Github Action
committed
Release 0.96.0
1 parent 9a64a35 commit 6d7dad4

File tree

10 files changed

+44
-38
lines changed

10 files changed

+44
-38
lines changed

Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk"
3-
version = "0.96.0-dev.0"
3+
version = "0.96.0"
44
description = "Model of the Rust trait system"
55
license = "MIT OR Apache-2.0"
66
authors = ["Rust Compiler Team", "Chalk developers"]
@@ -21,13 +21,13 @@ salsa = "0.16.0"
2121
serde = "1.0"
2222
serde_derive = "1.0"
2323

24-
chalk-derive = { version = "0.96.0-dev.0", path = "chalk-derive" }
25-
chalk-engine = { version = "0.96.0-dev.0", path = "chalk-engine" }
26-
chalk-ir = { version = "0.96.0-dev.0", path = "chalk-ir" }
27-
chalk-solve = { version = "0.96.0-dev.0", path = "chalk-solve" }
28-
chalk-recursive = { version = "0.96.0-dev.0", path = "chalk-recursive" }
29-
chalk-parse = { version = "0.96.0-dev.0", path = "chalk-parse" }
30-
chalk-integration = { version = "0.96.0-dev.0", path = "chalk-integration" }
24+
chalk-derive = { version = "=0.96.0", path = "chalk-derive" }
25+
chalk-engine = { version = "=0.96.0", path = "chalk-engine" }
26+
chalk-ir = { version = "=0.96.0", path = "chalk-ir" }
27+
chalk-solve = { version = "=0.96.0", path = "chalk-solve" }
28+
chalk-recursive = { version = "=0.96.0", path = "chalk-recursive" }
29+
chalk-parse = { version = "=0.96.0", path = "chalk-parse" }
30+
chalk-integration = { version = "=0.96.0", path = "chalk-integration" }
3131

3232
[workspace]
3333

RELEASES.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,14 @@ All notable changes to this project will be documented in this file. Dates are d
55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog)
66
(Note: versions before 0.11.0 were manually generated).
77

8+
#### [v0.96.0](https://github.com/rust-lang/chalk/compare/v0.95.0...v0.96.0)
9+
10+
- Rename generator to coroutine [`#806`](https://github.com/rust-lang/chalk/pull/806)
11+
812
#### [v0.95.0](https://github.com/rust-lang/chalk/compare/v0.94.0...v0.95.0)
913

14+
> 19 November 2023
15+
1016
- Fixes typo in what_is_chalk.md [`#804`](https://github.com/rust-lang/chalk/pull/804)
1117
- Bump deps [`#805`](https://github.com/rust-lang/chalk/pull/805)
1218

chalk-derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-derive"
3-
version = "0.96.0-dev.0"
3+
version = "0.96.0"
44
description = "A helper crate for use by chalk crates for `derive` macros."
55
license = "MIT OR Apache-2.0"
66
authors = ["Rust Compiler Team", "Chalk developers"]

chalk-engine/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-engine"
3-
version = "0.96.0-dev.0"
3+
version = "0.96.0"
44
description = "Core trait engine from Chalk project"
55
license = "MIT OR Apache-2.0"
66
authors = ["Rust Compiler Team", "Chalk developers"]
@@ -16,9 +16,9 @@ default = []
1616
rustc-hash = { version = "1.1.0" }
1717
tracing = "0.1"
1818

19-
chalk-derive = { version = "0.96.0-dev.0", path = "../chalk-derive" }
20-
chalk-ir = { version = "0.96.0-dev.0", path = "../chalk-ir" }
21-
chalk-solve = { version = "0.96.0-dev.0", path = "../chalk-solve" }
19+
chalk-derive = { version = "=0.96.0", path = "../chalk-derive" }
20+
chalk-ir = { version = "=0.96.0", path = "../chalk-ir" }
21+
chalk-solve = { version = "=0.96.0", path = "../chalk-solve" }
2222

2323
[dev-dependencies]
2424
chalk-integration = { path = "../chalk-integration" }

chalk-integration/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-integration"
3-
version = "0.96.0-dev.0"
3+
version = "0.96.0"
44
license = "MIT OR Apache-2.0"
55
description = "Sample solver setup for Chalk"
66
authors = ["Rust Compiler Team", "Chalk developers"]
@@ -14,10 +14,10 @@ string_cache = "0.8.0"
1414
salsa = "0.16.0"
1515
tracing = "0.1"
1616

17-
chalk-derive = { version = "0.96.0-dev.0", path = "../chalk-derive" }
18-
chalk-ir = { version = "0.96.0-dev.0", path = "../chalk-ir" }
19-
chalk-solve = { version = "0.96.0-dev.0", path = "../chalk-solve" }
20-
chalk-recursive = { version = "0.96.0-dev.0", path = "../chalk-recursive" }
21-
chalk-engine = { version = "0.96.0-dev.0", path = "../chalk-engine" }
22-
chalk-parse = { version = "0.96.0-dev.0", path = "../chalk-parse" }
17+
chalk-derive = { version = "=0.96.0", path = "../chalk-derive" }
18+
chalk-ir = { version = "=0.96.0", path = "../chalk-ir" }
19+
chalk-solve = { version = "=0.96.0", path = "../chalk-solve" }
20+
chalk-recursive = { version = "=0.96.0", path = "../chalk-recursive" }
21+
chalk-engine = { version = "=0.96.0", path = "../chalk-engine" }
22+
chalk-parse = { version = "=0.96.0", path = "../chalk-parse" }
2323
indexmap = "2"

chalk-ir/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-ir"
3-
version = "0.96.0-dev.0"
3+
version = "0.96.0"
44
description = "Chalk's internal representation of types, goals, and clauses"
55
license = "MIT OR Apache-2.0"
66
authors = ["Rust Compiler Team", "Chalk developers"]
@@ -12,4 +12,4 @@ edition = "2018"
1212
[dependencies]
1313
lazy_static = "1.4.0"
1414
bitflags = "2.4.1"
15-
chalk-derive = { version = "0.96.0-dev.0", path = "../chalk-derive" }
15+
chalk-derive = { version = "=0.96.0", path = "../chalk-derive" }

chalk-parse/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-parse"
3-
version = "0.96.0-dev.0"
3+
version = "0.96.0"
44
description = "Parser for the Chalk project"
55
license = "MIT OR Apache-2.0"
66
authors = ["Rust Compiler Team", "Chalk developers"]

chalk-recursive/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-recursive"
3-
version = "0.96.0-dev.0"
3+
version = "0.96.0"
44
description = "Recursive solver for the Chalk project"
55
license = "MIT OR Apache-2.0"
66
authors = ["Rust Compiler Team", "Chalk developers"]
@@ -13,9 +13,9 @@ edition = "2018"
1313
rustc-hash = { version = "1.1.0" }
1414
tracing = "0.1"
1515

16-
chalk-derive = { version = "0.96.0-dev.0", path = "../chalk-derive" }
17-
chalk-ir = { version = "0.96.0-dev.0", path = "../chalk-ir" }
18-
chalk-solve = { version = "0.96.0-dev.0", path = "../chalk-solve", default-features = false }
16+
chalk-derive = { version = "=0.96.0", path = "../chalk-derive" }
17+
chalk-ir = { version = "=0.96.0", path = "../chalk-ir" }
18+
chalk-solve = { version = "=0.96.0", path = "../chalk-solve", default-features = false }
1919

2020
[dev-dependencies]
2121
chalk-integration = { path = "../chalk-integration" }

chalk-solve/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-solve"
3-
version = "0.96.0-dev.0"
3+
version = "0.96.0"
44
description = "Combines the chalk-engine with chalk-ir"
55
license = "MIT OR Apache-2.0"
66
authors = ["Rust Compiler Team", "Chalk developers"]
@@ -18,8 +18,8 @@ tracing-subscriber = { version = "0.3", optional = true, features = ["env-filter
1818
tracing-tree = { version = "0.3", optional = true }
1919
rustc-hash = { version = "1.1.0" }
2020

21-
chalk-derive = { version = "0.96.0-dev.0", path = "../chalk-derive" }
22-
chalk-ir = { version = "0.96.0-dev.0", path = "../chalk-ir" }
21+
chalk-derive = { version = "=0.96.0", path = "../chalk-derive" }
22+
chalk-ir = { version = "=0.96.0", path = "../chalk-ir" }
2323
indexmap = "2"
2424

2525
[dev-dependencies]

0 commit comments

Comments
 (0)