Skip to content

Commit 4a140ae

Browse files
committed
bump version -> 0.99.0-dev.0
1 parent d2bcd64 commit 4a140ae

File tree

9 files changed

+42
-40
lines changed

9 files changed

+42
-40
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.98.0-dev.0"
3+
version = "0.99.0-dev.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.98.0-dev.0", path = "chalk-derive" }
25-
chalk-engine = { version = "0.98.0-dev.0", path = "chalk-engine" }
26-
chalk-ir = { version = "0.98.0-dev.0", path = "chalk-ir" }
27-
chalk-solve = { version = "0.98.0-dev.0", path = "chalk-solve" }
28-
chalk-recursive = { version = "0.98.0-dev.0", path = "chalk-recursive" }
29-
chalk-parse = { version = "0.98.0-dev.0", path = "chalk-parse" }
30-
chalk-integration = { version = "0.98.0-dev.0", path = "chalk-integration" }
24+
chalk-derive = { version = "0.99.0-dev.0", path = "chalk-derive" }
25+
chalk-engine = { version = "0.99.0-dev.0", path = "chalk-engine" }
26+
chalk-ir = { version = "0.99.0-dev.0", path = "chalk-ir" }
27+
chalk-solve = { version = "0.99.0-dev.0", path = "chalk-solve" }
28+
chalk-recursive = { version = "0.99.0-dev.0", path = "chalk-recursive" }
29+
chalk-parse = { version = "0.99.0-dev.0", path = "chalk-parse" }
30+
chalk-integration = { version = "0.99.0-dev.0", path = "chalk-integration" }
3131

3232
[workspace]
3333

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.98.0-dev.0"
3+
version = "0.99.0-dev.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.98.0-dev.0"
3+
version = "0.99.0-dev.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.98.0-dev.0", path = "../chalk-derive" }
20-
chalk-ir = { version = "0.98.0-dev.0", path = "../chalk-ir" }
21-
chalk-solve = { version = "0.98.0-dev.0", path = "../chalk-solve" }
19+
chalk-derive = { version = "0.99.0-dev.0", path = "../chalk-derive" }
20+
chalk-ir = { version = "0.99.0-dev.0", path = "../chalk-ir" }
21+
chalk-solve = { version = "0.99.0-dev.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.98.0-dev.0"
3+
version = "0.99.0-dev.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.98.0-dev.0", path = "../chalk-derive" }
18-
chalk-ir = { version = "0.98.0-dev.0", path = "../chalk-ir" }
19-
chalk-solve = { version = "0.98.0-dev.0", path = "../chalk-solve" }
20-
chalk-recursive = { version = "0.98.0-dev.0", path = "../chalk-recursive" }
21-
chalk-engine = { version = "0.98.0-dev.0", path = "../chalk-engine" }
22-
chalk-parse = { version = "0.98.0-dev.0", path = "../chalk-parse" }
17+
chalk-derive = { version = "0.99.0-dev.0", path = "../chalk-derive" }
18+
chalk-ir = { version = "0.99.0-dev.0", path = "../chalk-ir" }
19+
chalk-solve = { version = "0.99.0-dev.0", path = "../chalk-solve" }
20+
chalk-recursive = { version = "0.99.0-dev.0", path = "../chalk-recursive" }
21+
chalk-engine = { version = "0.99.0-dev.0", path = "../chalk-engine" }
22+
chalk-parse = { version = "0.99.0-dev.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.98.0-dev.0"
3+
version = "0.99.0-dev.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"]
@@ -11,4 +11,4 @@ edition = "2018"
1111

1212
[dependencies]
1313
bitflags = "2.4.1"
14-
chalk-derive = { version = "0.98.0-dev.0", path = "../chalk-derive" }
14+
chalk-derive = { version = "0.99.0-dev.0", path = "../chalk-derive" }

chalk-parse/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "chalk-parse"
3-
version = "0.98.0-dev.0"
3+
version = "0.99.0-dev.0"
44
description = "Parser for the Chalk project"
55
license = "MIT OR Apache-2.0"
66
authors = ["Rust Compiler Team", "Chalk developers"]
77
repository = "https://github.com/rust-lang/chalk"
88
readme = "README.md"
99
keywords = ["compiler", "traits", "prolog"]
10-
build = "build.rs" # LALRPOP preprocessing
10+
build = "build.rs" # LALRPOP preprocessing
1111
edition = "2018"
1212
publish = false
1313

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.98.0-dev.0"
3+
version = "0.99.0-dev.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.98.0-dev.0", path = "../chalk-derive" }
17-
chalk-ir = { version = "0.98.0-dev.0", path = "../chalk-ir" }
18-
chalk-solve = { version = "0.98.0-dev.0", path = "../chalk-solve", default-features = false }
16+
chalk-derive = { version = "0.99.0-dev.0", path = "../chalk-derive" }
17+
chalk-ir = { version = "0.99.0-dev.0", path = "../chalk-ir" }
18+
chalk-solve = { version = "0.99.0-dev.0", path = "../chalk-solve", default-features = false }
1919

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

chalk-solve/Cargo.toml

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-solve"
3-
version = "0.98.0-dev.0"
3+
version = "0.99.0-dev.0"
44
description = "Combines the chalk-engine with chalk-ir"
55
license = "MIT OR Apache-2.0"
66
authors = ["Rust Compiler Team", "Chalk developers"]
@@ -14,12 +14,14 @@ ena = "0.14.0"
1414
itertools = "0.12.0"
1515
petgraph = "0.6.4"
1616
tracing = "0.1"
17-
tracing-subscriber = { version = "0.3", optional = true, features = ["env-filter"] }
17+
tracing-subscriber = { version = "0.3", optional = true, features = [
18+
"env-filter",
19+
] }
1820
tracing-tree = { version = "0.3", optional = true }
1921
rustc-hash = { version = "1.1.0" }
2022

21-
chalk-derive = { version = "0.98.0-dev.0", path = "../chalk-derive" }
22-
chalk-ir = { version = "0.98.0-dev.0", path = "../chalk-ir" }
23+
chalk-derive = { version = "0.99.0-dev.0", path = "../chalk-derive" }
24+
chalk-ir = { version = "0.99.0-dev.0", path = "../chalk-ir" }
2325
indexmap = "2"
2426

2527
[dev-dependencies]

0 commit comments

Comments
 (0)