File tree 9 files changed +52
-50
lines changed
9 files changed +52
-50
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " chalk"
3
- version = " 0.13.0-dev.0 "
3
+ version = " 0.13.0"
4
4
description = " Model of the Rust trait system"
5
5
license = " Apache-2.0/MIT"
6
6
authors = [" Rust Compiler Team" , " Chalk developers" ]
@@ -21,12 +21,12 @@ salsa = "0.10.0"
21
21
serde = " 1.0"
22
22
serde_derive = " 1.0"
23
23
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" }
30
30
31
31
[workspace ]
32
32
Original file line number Diff line number Diff line change 1
1
# Unreleased
2
2
3
+ # Release 0.13.0
4
+
3
5
# Release 0.10.0
4
6
5
7
- Too many changes to list
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " chalk-derive"
3
- version = " 0.13.0-dev.0 "
3
+ version = " 0.13.0"
4
4
description = " A helper crate for use by chalk crates for `derive` macros."
5
5
license = " Apache-2.0/MIT"
6
6
authors = [" Rust Compiler Team" , " Chalk developers" ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " chalk-engine"
3
- version = " 0.13.0-dev.0 "
3
+ version = " 0.13.0"
4
4
description = " Core trait engine from Chalk project"
5
5
license = " Apache-2.0/MIT"
6
6
authors = [" Rust Compiler Team" , " Chalk developers" ]
@@ -15,5 +15,5 @@ default = []
15
15
[dependencies ]
16
16
rustc-hash = { version = " 1.1.0" }
17
17
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" }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " chalk-integration"
3
- version = " 0.13.0-dev.0 "
3
+ version = " 0.13.0"
4
4
license = " Apache-2.0/MIT"
5
5
description = " Sample solver setup for Chalk"
6
6
authors = [" Rust Compiler Team" , " Chalk developers" ]
@@ -13,8 +13,8 @@ publish = false
13
13
string_cache = " 0.8.0"
14
14
salsa = " 0.10.0"
15
15
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" }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " chalk-ir"
3
- version = " 0.13.0-dev.0 "
3
+ version = " 0.13.0"
4
4
description = " Chalk's internal representation of types, goals, and clauses"
5
5
license = " Apache-2.0/MIT"
6
6
authors = [" Rust Compiler Team" , " Chalk developers" ]
@@ -11,5 +11,5 @@ edition = "2018"
11
11
12
12
[dependencies ]
13
13
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" }
15
15
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " chalk-parse"
3
- version = " 0.13.0-dev.0 "
3
+ version = " 0.13.0"
4
4
description = " Parser for the Chalk project"
5
5
license = " Apache-2.0/MIT"
6
6
authors = [" Rust Compiler Team" , " Chalk developers" ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " chalk-solve"
3
- version = " 0.13.0-dev.0 "
3
+ version = " 0.13.0"
4
4
description = " Combines the chalk-engine with chalk-ir"
5
5
license = " Apache-2.0/MIT"
6
6
authors = [" Rust Compiler Team" , " Chalk developers" ]
@@ -15,9 +15,9 @@ itertools = "0.9.0"
15
15
petgraph = " 0.5.0"
16
16
rustc-hash = { version = " 1.0.0" }
17
17
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" }
21
21
22
22
[dev-dependencies ]
23
23
chalk-integration = { path = " ../chalk-integration" }
You can’t perform that action at this time.
0 commit comments