Skip to content

Commit 8ebbfb6

Browse files
Github ActionGithub Action
Github Action
authored and
Github Action
committed
Release 0.13.0
1 parent 9846bdd commit 8ebbfb6

File tree

9 files changed

+52
-50
lines changed

9 files changed

+52
-50
lines changed

Cargo.lock

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

Cargo.toml

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

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

3131
[workspace]
3232

RELEASES.md

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

3+
# Release 0.13.0
4+
35
# Release 0.10.0
46

57
- Too many changes to list

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.13.0-dev.0"
3+
version = "0.13.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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-engine"
3-
version = "0.13.0-dev.0"
3+
version = "0.13.0"
44
description = "Core trait engine from Chalk project"
55
license = "Apache-2.0/MIT"
66
authors = ["Rust Compiler Team", "Chalk developers"]
@@ -15,5 +15,5 @@ default = []
1515
[dependencies]
1616
rustc-hash = { version = "1.1.0" }
1717

18-
chalk-derive = { version = "0.13.0-dev.0", path = "../chalk-derive" }
19-
chalk-ir = { version = "0.13.0-dev.0", path = "../chalk-ir" }
18+
chalk-derive = { version = "=0.13.0", path = "../chalk-derive" }
19+
chalk-ir = { version = "=0.13.0", path = "../chalk-ir" }

chalk-integration/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-integration"
3-
version = "0.13.0-dev.0"
3+
version = "0.13.0"
44
license = "Apache-2.0/MIT"
55
description = "Sample solver setup for Chalk"
66
authors = ["Rust Compiler Team", "Chalk developers"]
@@ -13,8 +13,8 @@ publish = false
1313
string_cache = "0.8.0"
1414
salsa = "0.10.0"
1515

16-
chalk-derive = { version = "0.13.0-dev.0", path = "../chalk-derive" }
17-
chalk-engine = { version = "0.13.0-dev.0", path = "../chalk-engine" }
18-
chalk-ir = { version = "0.13.0-dev.0", path = "../chalk-ir" }
19-
chalk-solve = { version = "0.13.0-dev.0", path = "../chalk-solve" }
20-
chalk-parse = { version = "0.13.0-dev.0", path = "../chalk-parse" }
16+
chalk-derive = { version = "=0.13.0", path = "../chalk-derive" }
17+
chalk-engine = { version = "=0.13.0", path = "../chalk-engine" }
18+
chalk-ir = { version = "=0.13.0", path = "../chalk-ir" }
19+
chalk-solve = { version = "=0.13.0", path = "../chalk-solve" }
20+
chalk-parse = { version = "=0.13.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.13.0-dev.0"
3+
version = "0.13.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"]
@@ -11,5 +11,5 @@ edition = "2018"
1111

1212
[dependencies]
1313
lazy_static = "1.4.0"
14-
chalk-derive = { version = "0.13.0-dev.0", path = "../chalk-derive" }
14+
chalk-derive = { version = "=0.13.0", path = "../chalk-derive" }
1515

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.13.0-dev.0"
3+
version = "0.13.0"
44
description = "Parser for the Chalk project"
55
license = "Apache-2.0/MIT"
66
authors = ["Rust Compiler Team", "Chalk developers"]

chalk-solve/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-solve"
3-
version = "0.13.0-dev.0"
3+
version = "0.13.0"
44
description = "Combines the chalk-engine with chalk-ir"
55
license = "Apache-2.0/MIT"
66
authors = ["Rust Compiler Team", "Chalk developers"]
@@ -15,9 +15,9 @@ itertools = "0.9.0"
1515
petgraph = "0.5.0"
1616
rustc-hash = { version = "1.0.0" }
1717

18-
chalk-derive = { version = "0.13.0-dev.0", path = "../chalk-derive" }
19-
chalk-engine = { version = "0.13.0-dev.0", path = "../chalk-engine", optional = true }
20-
chalk-ir = { version = "0.13.0-dev.0", path = "../chalk-ir" }
18+
chalk-derive = { version = "=0.13.0", path = "../chalk-derive" }
19+
chalk-engine = { version = "=0.13.0", path = "../chalk-engine", optional = true }
20+
chalk-ir = { version = "=0.13.0", path = "../chalk-ir" }
2121

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

0 commit comments

Comments
 (0)