Skip to content

Commit 9e7043c

Browse files
author
Github Action
committed
Release 0.48.0
1 parent 60e57e0 commit 9e7043c

File tree

10 files changed

+40
-38
lines changed

10 files changed

+40
-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.48.0-dev.0"
3+
version = "0.48.0"
44
description = "Model of the Rust trait system"
55
license = "Apache-2.0/MIT"
66
authors = ["Rust Compiler Team", "Chalk developers"]
@@ -21,13 +21,13 @@ salsa = "0.15.0"
2121
serde = "1.0"
2222
serde_derive = "1.0"
2323

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

3232
[workspace]
3333

RELEASES.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Unreleased
22

3+
# Release 0.48.0
4+
35
# Release 0.47.0
46

57
# Release 0.46.0

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.48.0-dev.0"
3+
version = "0.48.0"
44
description = "A helper crate for use by chalk crates for `derive` macros."
55
license = "Apache-2.0/MIT"
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.48.0-dev.0"
3+
version = "0.48.0"
44
description = "Core trait engine from Chalk project"
55
license = "Apache-2.0/MIT"
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.48.0-dev.0", path = "../chalk-derive" }
20-
chalk-ir = { version = "0.48.0-dev.0", path = "../chalk-ir" }
21-
chalk-solve = { version = "0.48.0-dev.0", path = "../chalk-solve" }
19+
chalk-derive = { version = "=0.48.0", path = "../chalk-derive" }
20+
chalk-ir = { version = "=0.48.0", path = "../chalk-ir" }
21+
chalk-solve = { version = "=0.48.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.48.0-dev.0"
3+
version = "0.48.0"
44
license = "Apache-2.0/MIT"
55
description = "Sample solver setup for Chalk"
66
authors = ["Rust Compiler Team", "Chalk developers"]
@@ -14,9 +14,9 @@ string_cache = "0.8.0"
1414
salsa = "0.15.0"
1515
tracing = "0.1"
1616

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

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.48.0-dev.0"
3+
version = "0.48.0"
44
description = "Chalk's internal representation of types, goals, and clauses"
55
license = "Apache-2.0/MIT"
66
authors = ["Rust Compiler Team", "Chalk developers"]
@@ -12,4 +12,4 @@ edition = "2018"
1212
[dependencies]
1313
lazy_static = "1.4.0"
1414
bitflags = "1.2.1"
15-
chalk-derive = { version = "0.48.0-dev.0", path = "../chalk-derive" }
15+
chalk-derive = { version = "=0.48.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.48.0-dev.0"
3+
version = "0.48.0"
44
description = "Parser for the Chalk project"
55
license = "Apache-2.0/MIT"
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.48.0-dev.0"
3+
version = "0.48.0"
44
description = "Recursive solver for the Chalk project"
55
license = "Apache-2.0/MIT"
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.48.0-dev.0", path = "../chalk-derive" }
20-
chalk-ir = { version = "0.48.0-dev.0", path = "../chalk-ir" }
21-
chalk-solve = { version = "0.48.0-dev.0", path = "../chalk-solve" }
19+
chalk-derive = { version = "=0.48.0", path = "../chalk-derive" }
20+
chalk-ir = { version = "=0.48.0", path = "../chalk-ir" }
21+
chalk-solve = { version = "=0.48.0", path = "../chalk-solve" }
2222

2323
[dev-dependencies]
2424
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.48.0-dev.0"
3+
version = "0.48.0"
44
description = "Combines the chalk-engine with chalk-ir"
55
license = "Apache-2.0/MIT"
66
authors = ["Rust Compiler Team", "Chalk developers"]
@@ -18,8 +18,8 @@ tracing-subscriber = { version = "0.2", optional = true }
1818
tracing-tree = { version = "0.1.4", optional = true }
1919
rustc-hash = { version = "1.1.0" }
2020

21-
chalk-derive = { version = "0.48.0-dev.0", path = "../chalk-derive" }
22-
chalk-ir = { version = "0.48.0-dev.0", path = "../chalk-ir" }
21+
chalk-derive = { version = "=0.48.0", path = "../chalk-derive" }
22+
chalk-ir = { version = "=0.48.0", path = "../chalk-ir" }
2323

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

0 commit comments

Comments
 (0)