Skip to content

Commit 944c643

Browse files
committed
Bump version to -dev
1 parent 9ad01d3 commit 944c643

File tree

11 files changed

+78
-76
lines changed

11 files changed

+78
-76
lines changed

Cargo.lock

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

Cargo.toml

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

25-
chalk-macros = { version = "0.10.0", path = "chalk-macros" }
26-
chalk-derive = { version = "0.10.0", path = "chalk-derive" }
27-
chalk-engine = { version = "0.10.0", path = "chalk-engine" }
28-
chalk-ir = { version = "0.10.0", path = "chalk-ir" }
29-
chalk-rust-ir = { version = "0.10.0", path = "chalk-rust-ir" }
30-
chalk-solve = { version = "0.10.0", path = "chalk-solve" }
31-
chalk-parse = { version = "0.10.0", path = "chalk-parse" }
32-
chalk-integration = { version = "0.10.0", path = "chalk-integration" }
25+
chalk-macros = { version = "0.10.1-dev", path = "chalk-macros" }
26+
chalk-derive = { version = "0.10.1-dev", path = "chalk-derive" }
27+
chalk-engine = { version = "0.10.1-dev", path = "chalk-engine" }
28+
chalk-ir = { version = "0.10.1-dev", path = "chalk-ir" }
29+
chalk-rust-ir = { version = "0.10.1-dev", path = "chalk-rust-ir" }
30+
chalk-solve = { version = "0.10.1-dev", path = "chalk-solve" }
31+
chalk-parse = { version = "0.10.1-dev", path = "chalk-parse" }
32+
chalk-integration = { version = "0.10.1-dev", path = "chalk-integration" }
3333

3434
[workspace]

RELEASES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Unreleased
2+
13
# Release 0.10.0
24

35
- Too many changes to list

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.10.0"
3+
version = "0.10.1-dev"
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-engine"
3-
version = "0.10.0"
3+
version = "0.10.1-dev"
44
description = "Core trait engine from Chalk project"
55
license = "Apache-2.0/MIT"
66
authors = ["Rust Compiler Team", "Chalk developers"]
@@ -15,4 +15,4 @@ default = []
1515
[dependencies]
1616
rustc-hash = { version = "1.0.0" }
1717

18-
chalk-macros = { version = "0.10.0", path = "../chalk-macros" }
18+
chalk-macros = { version = "0.10.1-dev", path = "../chalk-macros" }

chalk-integration/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-integration"
3-
version = "0.10.0"
3+
version = "0.10.1-dev"
44
license = "Apache-2.0/MIT"
55
description = "Sample solver setup for Chalk"
66
authors = ["Rust Compiler Team", "Chalk developers"]
@@ -13,10 +13,10 @@ publish = false
1313
lalrpop-intern = "0.15.1"
1414
salsa = "0.10.0"
1515

16-
chalk-macros = { version = "0.10.0", path = "../chalk-macros" }
17-
chalk-derive = { version = "0.10.0", path = "../chalk-derive" }
18-
chalk-engine = { version = "0.10.0", path = "../chalk-engine" }
19-
chalk-ir = { version = "0.10.0", path = "../chalk-ir", features = ["default-interner"] }
20-
chalk-rust-ir = { version = "0.10.0", path = "../chalk-rust-ir" }
21-
chalk-solve = { version = "0.10.0", path = "../chalk-solve" }
22-
chalk-parse = { version = "0.10.0", path = "../chalk-parse" }
16+
chalk-macros = { version = "0.10.1-dev", path = "../chalk-macros" }
17+
chalk-derive = { version = "0.10.1-dev", path = "../chalk-derive" }
18+
chalk-engine = { version = "0.10.1-dev", path = "../chalk-engine" }
19+
chalk-ir = { version = "0.10.1-dev", path = "../chalk-ir", features = ["default-interner"] }
20+
chalk-rust-ir = { version = "0.10.1-dev", path = "../chalk-rust-ir" }
21+
chalk-solve = { version = "0.10.1-dev", path = "../chalk-solve" }
22+
chalk-parse = { version = "0.10.1-dev", path = "../chalk-parse" }

chalk-ir/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-ir"
3-
version = "0.10.0"
3+
version = "0.10.1-dev"
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,9 +12,9 @@ edition = "2018"
1212
[dependencies]
1313
lalrpop-intern = { version = "0.15.1", optional = true }
1414

15-
chalk-macros = { version = "0.10.0", path = "../chalk-macros" }
16-
chalk-derive = { version = "0.10.0", path = "../chalk-derive" }
17-
chalk-engine = { version = "0.10.0", path = "../chalk-engine" }
15+
chalk-macros = { version = "0.10.1-dev", path = "../chalk-macros" }
16+
chalk-derive = { version = "0.10.1-dev", path = "../chalk-derive" }
17+
chalk-engine = { version = "0.10.1-dev", path = "../chalk-engine" }
1818

1919
[features]
2020
default = []

chalk-macros/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-macros"
3-
version = "0.10.0"
3+
version = "0.10.1-dev"
44
description = "Macros for Chalk"
55
license = "Apache-2.0/MIT"
66
authors = ["Rust Compiler Team", "Chalk developers"]

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

chalk-rust-ir/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "chalk-rust-ir"
3-
version = "0.10.0"
3+
version = "0.10.1-dev"
44
description = "A library that defines the IR for Rust concepts like traits and impls."
55
license = "Apache-2.0/MIT"
66
authors = ["Rust Compiler Team", "Chalk developers"]
77
repository = "https://github.com/rust-lang/chalk"
88
edition = "2018"
99

1010
[dependencies]
11-
chalk-macros = { version = "0.10.0", path = "../chalk-macros" }
12-
chalk-derive = { version = "0.10.0", path = "../chalk-derive" }
13-
chalk-engine = { version = "0.10.0", path = "../chalk-engine" }
14-
chalk-ir = { version = "0.10.0", path = "../chalk-ir" }
11+
chalk-macros = { version = "0.10.1-dev", path = "../chalk-macros" }
12+
chalk-derive = { version = "0.10.1-dev", path = "../chalk-derive" }
13+
chalk-engine = { version = "0.10.1-dev", path = "../chalk-engine" }
14+
chalk-ir = { version = "0.10.1-dev", path = "../chalk-ir" }

chalk-solve/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-solve"
3-
version = "0.10.0"
3+
version = "0.10.1-dev"
44
description = "Combines the chalk-engine with chalk-ir"
55
license = "Apache-2.0/MIT"
66
authors = ["Rust Compiler Team", "Chalk developers"]
@@ -15,8 +15,8 @@ itertools = "0.9.0"
1515
petgraph = "0.4.13"
1616
rustc-hash = { version = "1.0.0" }
1717

18-
chalk-macros = { version = "0.10.0", path = "../chalk-macros" }
19-
chalk-derive = { version = "0.10.0", path = "../chalk-derive" }
20-
chalk-engine = { version = "0.10.0", path = "../chalk-engine" }
21-
chalk-ir = { version = "0.10.0", path = "../chalk-ir" }
22-
chalk-rust-ir = { version = "0.10.0", path = "../chalk-rust-ir" }
18+
chalk-macros = { version = "0.10.1-dev", path = "../chalk-macros" }
19+
chalk-derive = { version = "0.10.1-dev", path = "../chalk-derive" }
20+
chalk-engine = { version = "0.10.1-dev", path = "../chalk-engine" }
21+
chalk-ir = { version = "0.10.1-dev", path = "../chalk-ir" }
22+
chalk-rust-ir = { version = "0.10.1-dev", path = "../chalk-rust-ir" }

0 commit comments

Comments
 (0)