From c671634f287341d2bd076f6aa4c41c47726c031d Mon Sep 17 00:00:00 2001 From: Github Action Date: Sun, 8 Oct 2023 00:23:00 +0000 Subject: [PATCH] Release 0.94.0 --- Cargo.lock | 16 ++++++++-------- Cargo.toml | 16 ++++++++-------- RELEASES.md | 8 ++++++++ chalk-derive/Cargo.toml | 2 +- chalk-engine/Cargo.toml | 8 ++++---- chalk-integration/Cargo.toml | 14 +++++++------- chalk-ir/Cargo.toml | 4 ++-- chalk-parse/Cargo.toml | 2 +- chalk-recursive/Cargo.toml | 8 ++++---- chalk-solve/Cargo.toml | 6 +++--- 10 files changed, 46 insertions(+), 38 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 014c3eb5098..1b0827c84dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -90,7 +90,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chalk" -version = "0.94.0-dev.0" +version = "0.94.0" dependencies = [ "chalk-derive", "chalk-engine", @@ -113,7 +113,7 @@ dependencies = [ [[package]] name = "chalk-derive" -version = "0.94.0-dev.0" +version = "0.94.0" dependencies = [ "proc-macro2", "quote", @@ -123,7 +123,7 @@ dependencies = [ [[package]] name = "chalk-engine" -version = "0.94.0-dev.0" +version = "0.94.0" dependencies = [ "chalk-derive", "chalk-integration", @@ -135,7 +135,7 @@ dependencies = [ [[package]] name = "chalk-integration" -version = "0.94.0-dev.0" +version = "0.94.0" dependencies = [ "chalk-derive", "chalk-engine", @@ -151,7 +151,7 @@ dependencies = [ [[package]] name = "chalk-ir" -version = "0.94.0-dev.0" +version = "0.94.0" dependencies = [ "bitflags", "chalk-derive", @@ -160,7 +160,7 @@ dependencies = [ [[package]] name = "chalk-parse" -version = "0.94.0-dev.0" +version = "0.94.0" dependencies = [ "lalrpop", "lalrpop-util", @@ -170,7 +170,7 @@ dependencies = [ [[package]] name = "chalk-recursive" -version = "0.94.0-dev.0" +version = "0.94.0" dependencies = [ "chalk-derive", "chalk-integration", @@ -182,7 +182,7 @@ dependencies = [ [[package]] name = "chalk-solve" -version = "0.94.0-dev.0" +version = "0.94.0" dependencies = [ "chalk-derive", "chalk-integration", diff --git a/Cargo.toml b/Cargo.toml index 1bb40b5ae1d..72f4032800b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chalk" -version = "0.94.0-dev.0" +version = "0.94.0" description = "Model of the Rust trait system" license = "MIT OR Apache-2.0" authors = ["Rust Compiler Team", "Chalk developers"] @@ -21,13 +21,13 @@ salsa = "0.16.0" serde = "1.0" serde_derive = "1.0" -chalk-derive = { version = "0.94.0-dev.0", path = "chalk-derive" } -chalk-engine = { version = "0.94.0-dev.0", path = "chalk-engine" } -chalk-ir = { version = "0.94.0-dev.0", path = "chalk-ir" } -chalk-solve = { version = "0.94.0-dev.0", path = "chalk-solve" } -chalk-recursive = { version = "0.94.0-dev.0", path = "chalk-recursive" } -chalk-parse = { version = "0.94.0-dev.0", path = "chalk-parse" } -chalk-integration = { version = "0.94.0-dev.0", path = "chalk-integration" } +chalk-derive = { version = "=0.94.0", path = "chalk-derive" } +chalk-engine = { version = "=0.94.0", path = "chalk-engine" } +chalk-ir = { version = "=0.94.0", path = "chalk-ir" } +chalk-solve = { version = "=0.94.0", path = "chalk-solve" } +chalk-recursive = { version = "=0.94.0", path = "chalk-recursive" } +chalk-parse = { version = "=0.94.0", path = "chalk-parse" } +chalk-integration = { version = "=0.94.0", path = "chalk-integration" } [workspace] diff --git a/RELEASES.md b/RELEASES.md index 3f8b7303b13..4a09906283f 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -5,8 +5,16 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog) (Note: versions before 0.11.0 were manually generated). +#### [v0.94.0](https://github.com/rust-lang/chalk/compare/v0.93.0...v0.94.0) + +- Remove an unnecessary mut and fix warning [`#803`](https://github.com/rust-lang/chalk/pull/803) +- Upgrade to indexmap 2 [`#802`](https://github.com/rust-lang/chalk/pull/802) +- chalk-solve: upgrade petgraph to version 0.6.4 [`#801`](https://github.com/rust-lang/chalk/pull/801) + #### [v0.93.0](https://github.com/rust-lang/chalk/compare/v0.92.0...v0.93.0) +> 13 August 2023 + - Push DiscriminantKind implementation fact unconditionally [`#800`](https://github.com/rust-lang/chalk/pull/800) #### [v0.92.0](https://github.com/rust-lang/chalk/compare/v0.91.0...v0.92.0) diff --git a/chalk-derive/Cargo.toml b/chalk-derive/Cargo.toml index 04d1b68460d..a3d1933f277 100644 --- a/chalk-derive/Cargo.toml +++ b/chalk-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chalk-derive" -version = "0.94.0-dev.0" +version = "0.94.0" description = "A helper crate for use by chalk crates for `derive` macros." license = "MIT OR Apache-2.0" authors = ["Rust Compiler Team", "Chalk developers"] diff --git a/chalk-engine/Cargo.toml b/chalk-engine/Cargo.toml index 46262dea2a8..bfe22779945 100644 --- a/chalk-engine/Cargo.toml +++ b/chalk-engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chalk-engine" -version = "0.94.0-dev.0" +version = "0.94.0" description = "Core trait engine from Chalk project" license = "MIT OR Apache-2.0" authors = ["Rust Compiler Team", "Chalk developers"] @@ -16,9 +16,9 @@ default = [] rustc-hash = { version = "1.1.0" } tracing = "0.1" -chalk-derive = { version = "0.94.0-dev.0", path = "../chalk-derive" } -chalk-ir = { version = "0.94.0-dev.0", path = "../chalk-ir" } -chalk-solve = { version = "0.94.0-dev.0", path = "../chalk-solve" } +chalk-derive = { version = "=0.94.0", path = "../chalk-derive" } +chalk-ir = { version = "=0.94.0", path = "../chalk-ir" } +chalk-solve = { version = "=0.94.0", path = "../chalk-solve" } [dev-dependencies] chalk-integration = { path = "../chalk-integration" } diff --git a/chalk-integration/Cargo.toml b/chalk-integration/Cargo.toml index 27548c03100..e21754b0360 100644 --- a/chalk-integration/Cargo.toml +++ b/chalk-integration/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chalk-integration" -version = "0.94.0-dev.0" +version = "0.94.0" license = "MIT OR Apache-2.0" description = "Sample solver setup for Chalk" authors = ["Rust Compiler Team", "Chalk developers"] @@ -14,10 +14,10 @@ string_cache = "0.8.0" salsa = "0.16.0" tracing = "0.1" -chalk-derive = { version = "0.94.0-dev.0", path = "../chalk-derive" } -chalk-ir = { version = "0.94.0-dev.0", path = "../chalk-ir" } -chalk-solve = { version = "0.94.0-dev.0", path = "../chalk-solve" } -chalk-recursive = { version = "0.94.0-dev.0", path = "../chalk-recursive" } -chalk-engine = { version = "0.94.0-dev.0", path = "../chalk-engine" } -chalk-parse = { version = "0.94.0-dev.0", path = "../chalk-parse" } +chalk-derive = { version = "=0.94.0", path = "../chalk-derive" } +chalk-ir = { version = "=0.94.0", path = "../chalk-ir" } +chalk-solve = { version = "=0.94.0", path = "../chalk-solve" } +chalk-recursive = { version = "=0.94.0", path = "../chalk-recursive" } +chalk-engine = { version = "=0.94.0", path = "../chalk-engine" } +chalk-parse = { version = "=0.94.0", path = "../chalk-parse" } indexmap = "2" diff --git a/chalk-ir/Cargo.toml b/chalk-ir/Cargo.toml index 0ec127f2e3a..50ecb543d1d 100644 --- a/chalk-ir/Cargo.toml +++ b/chalk-ir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chalk-ir" -version = "0.94.0-dev.0" +version = "0.94.0" description = "Chalk's internal representation of types, goals, and clauses" license = "MIT OR Apache-2.0" authors = ["Rust Compiler Team", "Chalk developers"] @@ -12,4 +12,4 @@ edition = "2018" [dependencies] lazy_static = "1.4.0" bitflags = "1.2.1" -chalk-derive = { version = "0.94.0-dev.0", path = "../chalk-derive" } +chalk-derive = { version = "=0.94.0", path = "../chalk-derive" } diff --git a/chalk-parse/Cargo.toml b/chalk-parse/Cargo.toml index db8e7f6d68c..c4ca9d567b0 100644 --- a/chalk-parse/Cargo.toml +++ b/chalk-parse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chalk-parse" -version = "0.94.0-dev.0" +version = "0.94.0" description = "Parser for the Chalk project" license = "MIT OR Apache-2.0" authors = ["Rust Compiler Team", "Chalk developers"] diff --git a/chalk-recursive/Cargo.toml b/chalk-recursive/Cargo.toml index 73d2fca7fdd..dd50e8f4724 100644 --- a/chalk-recursive/Cargo.toml +++ b/chalk-recursive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chalk-recursive" -version = "0.94.0-dev.0" +version = "0.94.0" description = "Recursive solver for the Chalk project" license = "MIT OR Apache-2.0" authors = ["Rust Compiler Team", "Chalk developers"] @@ -13,9 +13,9 @@ edition = "2018" rustc-hash = { version = "1.1.0" } tracing = "0.1" -chalk-derive = { version = "0.94.0-dev.0", path = "../chalk-derive" } -chalk-ir = { version = "0.94.0-dev.0", path = "../chalk-ir" } -chalk-solve = { version = "0.94.0-dev.0", path = "../chalk-solve", default-features = false } +chalk-derive = { version = "=0.94.0", path = "../chalk-derive" } +chalk-ir = { version = "=0.94.0", path = "../chalk-ir" } +chalk-solve = { version = "=0.94.0", path = "../chalk-solve", default-features = false } [dev-dependencies] chalk-integration = { path = "../chalk-integration" } diff --git a/chalk-solve/Cargo.toml b/chalk-solve/Cargo.toml index 4584cbe51a4..a70e4f8fd0f 100644 --- a/chalk-solve/Cargo.toml +++ b/chalk-solve/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chalk-solve" -version = "0.94.0-dev.0" +version = "0.94.0" description = "Combines the chalk-engine with chalk-ir" license = "MIT OR Apache-2.0" authors = ["Rust Compiler Team", "Chalk developers"] @@ -18,8 +18,8 @@ tracing-subscriber = { version = "0.3", optional = true, features = ["env-filter tracing-tree = { version = "0.2", optional = true } rustc-hash = { version = "1.1.0" } -chalk-derive = { version = "0.94.0-dev.0", path = "../chalk-derive" } -chalk-ir = { version = "0.94.0-dev.0", path = "../chalk-ir" } +chalk-derive = { version = "=0.94.0", path = "../chalk-derive" } +chalk-ir = { version = "=0.94.0", path = "../chalk-ir" } indexmap = "2" [dev-dependencies]