Skip to content

Commit 656be2d

Browse files
committed
Update versions
1 parent 5050915 commit 656be2d

File tree

9 files changed

+51
-51
lines changed

9 files changed

+51
-51
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Install Rust toolchain
1919
uses: actions-rs/toolchain@v1
2020
with:
21-
toolchain: stable
21+
toolchain: stable
2222
profile: minimal
2323
override: true
2424

Cargo.lock

Lines changed: 26 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

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

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

3131
[workspace]

chalk-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-derive"
3-
version = "0.11.0-dev.0"
3+
version = "0.12.0-dev.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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-engine"
3-
version = "0.11.0-dev.0"
3+
version = "0.12.0-dev.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.11.0-dev.0", path = "../chalk-derive" }
19-
chalk-ir = { version = "0.11.0-dev.0", path = "../chalk-ir" }
18+
chalk-derive = { version = "0.12.0-dev.0", path = "../chalk-derive" }
19+
chalk-ir = { version = "0.12.0-dev.0", path = "../chalk-ir" }

chalk-integration/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-integration"
3-
version = "0.11.0-dev.0"
3+
version = "0.12.0-dev.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.11.0-dev.0", path = "../chalk-derive" }
17-
chalk-engine = { version = "0.11.0-dev.0", path = "../chalk-engine" }
18-
chalk-ir = { version = "0.11.0-dev.0", path = "../chalk-ir" }
19-
chalk-solve = { version = "0.11.0-dev.0", path = "../chalk-solve" }
20-
chalk-parse = { version = "0.11.0-dev.0", path = "../chalk-parse" }
16+
chalk-derive = { version = "0.12.0-dev.0", path = "../chalk-derive" }
17+
chalk-engine = { version = "0.12.0-dev.0", path = "../chalk-engine" }
18+
chalk-ir = { version = "0.12.0-dev.0", path = "../chalk-ir" }
19+
chalk-solve = { version = "0.12.0-dev.0", path = "../chalk-solve" }
20+
chalk-parse = { version = "0.12.0-dev.0", path = "../chalk-parse" }

chalk-ir/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-ir"
3-
version = "0.11.0-dev.0"
3+
version = "0.12.0-dev.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.11.0-dev.0", path = "../chalk-derive" }
14+
chalk-derive = { version = "0.12.0-dev.0", path = "../chalk-derive" }
1515

chalk-parse/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-parse"
3-
version = "0.11.0-dev.0"
3+
version = "0.12.0-dev.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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-solve"
3-
version = "0.11.0-dev.0"
3+
version = "0.12.0-dev.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.11.0-dev.0", path = "../chalk-derive" }
19-
chalk-engine = { version = "0.11.0-dev.0", path = "../chalk-engine", optional = true }
20-
chalk-ir = { version = "0.11.0-dev.0", path = "../chalk-ir" }
18+
chalk-derive = { version = "0.12.0-dev.0", path = "../chalk-derive" }
19+
chalk-engine = { version = "0.12.0-dev.0", path = "../chalk-engine", optional = true }
20+
chalk-ir = { version = "0.12.0-dev.0", path = "../chalk-ir" }
2121

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

0 commit comments

Comments
 (0)