Skip to content

Commit 971c963

Browse files
author
Github Action
committed
Release 0.85.0
1 parent b460e4b commit 971c963

File tree

10 files changed

+48
-38
lines changed

10 files changed

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

3232
[workspace]
3333

RELEASES.md

+10
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,18 @@ 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.85.0](https://github.com/rust-lang/chalk/compare/v0.84.0...v0.85.0)
9+
10+
- Split fallible infallible folding [`#772`](https://github.com/rust-lang/chalk/pull/772)
11+
- Bump regex from 1.5.4 to 1.5.5 [`#764`](https://github.com/rust-lang/chalk/pull/764)
12+
- Bump thread_local from 1.1.3 to 1.1.4 [`#766`](https://github.com/rust-lang/chalk/pull/766)
13+
- Bump crossbeam-utils from 0.8.5 to 0.8.9 [`#771`](https://github.com/rust-lang/chalk/pull/771)
14+
- Update mdbook-mermaid [`#776`](https://github.com/rust-lang/chalk/pull/776)
15+
816
#### [v0.84.0](https://github.com/rust-lang/chalk/compare/v0.83.0...v0.84.0)
917

18+
> 31 July 2022
19+
1020
- Solve auto traits for closures (issue #734) [`#755`](https://github.com/rust-lang/chalk/pull/755)
1121

1222
#### [v0.83.0](https://github.com/rust-lang/chalk/compare/v0.82.0...v0.83.0)

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.85.0-dev.0"
3+
version = "0.85.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.85.0-dev.0"
3+
version = "0.85.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.85.0-dev.0", path = "../chalk-derive" }
20-
chalk-ir = { version = "0.85.0-dev.0", path = "../chalk-ir" }
21-
chalk-solve = { version = "0.85.0-dev.0", path = "../chalk-solve" }
19+
chalk-derive = { version = "=0.85.0", path = "../chalk-derive" }
20+
chalk-ir = { version = "=0.85.0", path = "../chalk-ir" }
21+
chalk-solve = { version = "=0.85.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.85.0-dev.0"
3+
version = "0.85.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.85.0-dev.0", path = "../chalk-derive" }
18-
chalk-ir = { version = "0.85.0-dev.0", path = "../chalk-ir" }
19-
chalk-solve = { version = "0.85.0-dev.0", path = "../chalk-solve" }
20-
chalk-recursive = { version = "0.85.0-dev.0", path = "../chalk-recursive" }
21-
chalk-engine = { version = "0.85.0-dev.0", path = "../chalk-engine" }
22-
chalk-parse = { version = "0.85.0-dev.0", path = "../chalk-parse" }
17+
chalk-derive = { version = "=0.85.0", path = "../chalk-derive" }
18+
chalk-ir = { version = "=0.85.0", path = "../chalk-ir" }
19+
chalk-solve = { version = "=0.85.0", path = "../chalk-solve" }
20+
chalk-recursive = { version = "=0.85.0", path = "../chalk-recursive" }
21+
chalk-engine = { version = "=0.85.0", path = "../chalk-engine" }
22+
chalk-parse = { version = "=0.85.0", path = "../chalk-parse" }
2323
indexmap = "1.8.0"

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.85.0-dev.0"
3+
version = "0.85.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"]
@@ -12,4 +12,4 @@ edition = "2018"
1212
[dependencies]
1313
lazy_static = "1.4.0"
1414
bitflags = "1.2.1"
15-
chalk-derive = { version = "0.85.0-dev.0", path = "../chalk-derive" }
15+
chalk-derive = { version = "=0.85.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.85.0-dev.0"
3+
version = "0.85.0"
44
description = "Parser for the Chalk project"
55
license = "MIT OR Apache-2.0"
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.85.0-dev.0"
3+
version = "0.85.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.85.0-dev.0", path = "../chalk-derive" }
17-
chalk-ir = { version = "0.85.0-dev.0", path = "../chalk-ir" }
18-
chalk-solve = { version = "0.85.0-dev.0", path = "../chalk-solve", default-features = false }
16+
chalk-derive = { version = "=0.85.0", path = "../chalk-derive" }
17+
chalk-ir = { version = "=0.85.0", path = "../chalk-ir" }
18+
chalk-solve = { version = "=0.85.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.85.0-dev.0"
3+
version = "0.85.0"
44
description = "Combines the chalk-engine with chalk-ir"
55
license = "MIT OR Apache-2.0"
66
authors = ["Rust Compiler Team", "Chalk developers"]
@@ -18,8 +18,8 @@ tracing-subscriber = { version = "0.3", optional = true, features = ["env-filter
1818
tracing-tree = { version = "0.2", optional = true }
1919
rustc-hash = { version = "1.1.0" }
2020

21-
chalk-derive = { version = "0.85.0-dev.0", path = "../chalk-derive" }
22-
chalk-ir = { version = "0.85.0-dev.0", path = "../chalk-ir" }
21+
chalk-derive = { version = "=0.85.0", path = "../chalk-derive" }
22+
chalk-ir = { version = "=0.85.0", path = "../chalk-ir" }
2323
indexmap = "1.8.0"
2424

2525
[dev-dependencies]

0 commit comments

Comments
 (0)