Skip to content

Commit 19ef61f

Browse files
author
Github Action
committed
Release 0.70.0
1 parent f70fef0 commit 19ef61f

File tree

10 files changed

+51
-38
lines changed

10 files changed

+51
-38
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.70.0-dev.0"
3+
version = "0.70.0"
44
description = "Model of the Rust trait system"
55
license = "Apache-2.0/MIT"
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.70.0-dev.0", path = "chalk-derive" }
25-
chalk-engine = { version = "0.70.0-dev.0", path = "chalk-engine" }
26-
chalk-ir = { version = "0.70.0-dev.0", path = "chalk-ir" }
27-
chalk-solve = { version = "0.70.0-dev.0", path = "chalk-solve" }
28-
chalk-recursive = { version = "0.70.0-dev.0", path = "chalk-recursive" }
29-
chalk-parse = { version = "0.70.0-dev.0", path = "chalk-parse" }
30-
chalk-integration = { version = "0.70.0-dev.0", path = "chalk-integration" }
24+
chalk-derive = { version = "=0.70.0", path = "chalk-derive" }
25+
chalk-engine = { version = "=0.70.0", path = "chalk-engine" }
26+
chalk-ir = { version = "=0.70.0", path = "chalk-ir" }
27+
chalk-solve = { version = "=0.70.0", path = "chalk-solve" }
28+
chalk-recursive = { version = "=0.70.0", path = "chalk-recursive" }
29+
chalk-parse = { version = "=0.70.0", path = "chalk-parse" }
30+
chalk-integration = { version = "=0.70.0", path = "chalk-integration" }
3131

3232
[workspace]
3333

RELEASES.md

+13
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file. Dates are d
55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog)
66
(Note: versions before 0.11.0 were manually generated).
77

8+
#### [v0.70.0](https://github.com/rust-lang/chalk/compare/v0.69.0...v0.70.0)
9+
10+
- Install auto-changelog globally to fix command not found [`#720`](https://github.com/rust-lang/chalk/pull/720)
11+
- rework recursive solver for better integration into an expanded version of salsa [`#708`](https://github.com/rust-lang/chalk/pull/708)
12+
- Make various methods on InferenceTable public [`#718`](https://github.com/rust-lang/chalk/pull/718)
13+
- Use unnamed consts in chalk-derive [`#717`](https://github.com/rust-lang/chalk/pull/717)
14+
- Update "implied bounds" rules for types to match #206 [`#714`](https://github.com/rust-lang/chalk/pull/714)
15+
- Update publishing page in the book with automation details [`#715`](https://github.com/rust-lang/chalk/pull/715)
16+
- Skip crate publishing if there have been no changes [`#711`](https://github.com/rust-lang/chalk/pull/711)
17+
- Fix automatic changelog generation to include current version's changes [`#713`](https://github.com/rust-lang/chalk/pull/713)
18+
- Automate the changelog [`#710`](https://github.com/rust-lang/chalk/pull/710)
19+
- Fix typo: [defined by the] embedded -> embedder [`#712`](https://github.com/rust-lang/chalk/pull/712)
20+
821
#### [v0.69.0](https://github.com/rust-lang/chalk/compare/v0.68.0...v0.69.0)
922

1023
> 6 June 2021

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-engine"
3-
version = "0.70.0-dev.0"
3+
version = "0.70.0"
44
description = "Core trait engine from Chalk project"
55
license = "Apache-2.0/MIT"
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.70.0-dev.0", path = "../chalk-derive" }
20-
chalk-ir = { version = "0.70.0-dev.0", path = "../chalk-ir" }
21-
chalk-solve = { version = "0.70.0-dev.0", path = "../chalk-solve" }
19+
chalk-derive = { version = "=0.70.0", path = "../chalk-derive" }
20+
chalk-ir = { version = "=0.70.0", path = "../chalk-ir" }
21+
chalk-solve = { version = "=0.70.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.70.0-dev.0"
3+
version = "0.70.0"
44
license = "Apache-2.0/MIT"
55
description = "Sample solver setup for Chalk"
66
authors = ["Rust Compiler Team", "Chalk developers"]
@@ -14,9 +14,9 @@ string_cache = "0.8.0"
1414
salsa = "0.16.0"
1515
tracing = "0.1"
1616

17-
chalk-derive = { version = "0.70.0-dev.0", path = "../chalk-derive" }
18-
chalk-ir = { version = "0.70.0-dev.0", path = "../chalk-ir" }
19-
chalk-solve = { version = "0.70.0-dev.0", path = "../chalk-solve" }
20-
chalk-recursive = { version = "0.70.0-dev.0", path = "../chalk-recursive" }
21-
chalk-engine = { version = "0.70.0-dev.0", path = "../chalk-engine" }
22-
chalk-parse = { version = "0.70.0-dev.0", path = "../chalk-parse" }
17+
chalk-derive = { version = "=0.70.0", path = "../chalk-derive" }
18+
chalk-ir = { version = "=0.70.0", path = "../chalk-ir" }
19+
chalk-solve = { version = "=0.70.0", path = "../chalk-solve" }
20+
chalk-recursive = { version = "=0.70.0", path = "../chalk-recursive" }
21+
chalk-engine = { version = "=0.70.0", path = "../chalk-engine" }
22+
chalk-parse = { version = "=0.70.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.70.0-dev.0"
3+
version = "0.70.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"]
@@ -12,4 +12,4 @@ edition = "2018"
1212
[dependencies]
1313
lazy_static = "1.4.0"
1414
bitflags = "1.2.1"
15-
chalk-derive = { version = "0.70.0-dev.0", path = "../chalk-derive" }
15+
chalk-derive = { version = "=0.70.0", path = "../chalk-derive" }

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

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.70.0-dev.0"
3+
version = "0.70.0"
44
description = "Recursive solver for the Chalk project"
55
license = "Apache-2.0/MIT"
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.70.0-dev.0", path = "../chalk-derive" }
17-
chalk-ir = { version = "0.70.0-dev.0", path = "../chalk-ir" }
18-
chalk-solve = { version = "0.70.0-dev.0", path = "../chalk-solve", default-features = false }
16+
chalk-derive = { version = "=0.70.0", path = "../chalk-derive" }
17+
chalk-ir = { version = "=0.70.0", path = "../chalk-ir" }
18+
chalk-solve = { version = "=0.70.0", path = "../chalk-solve", default-features = false }
1919

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

chalk-solve/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chalk-solve"
3-
version = "0.70.0-dev.0"
3+
version = "0.70.0"
44
description = "Combines the chalk-engine with chalk-ir"
55
license = "Apache-2.0/MIT"
66
authors = ["Rust Compiler Team", "Chalk developers"]
@@ -18,8 +18,8 @@ tracing-subscriber = { version = "0.2", optional = true }
1818
tracing-tree = { version = "0.1.4", optional = true }
1919
rustc-hash = { version = "1.1.0" }
2020

21-
chalk-derive = { version = "0.70.0-dev.0", path = "../chalk-derive" }
22-
chalk-ir = { version = "0.70.0-dev.0", path = "../chalk-ir" }
21+
chalk-derive = { version = "=0.70.0", path = "../chalk-derive" }
22+
chalk-ir = { version = "=0.70.0", path = "../chalk-ir" }
2323

2424
[dev-dependencies]
2525
chalk-integration = { path = "../chalk-integration" }

0 commit comments

Comments
 (0)