From df504e1f1e8be7c3089d74c875e25d20bf73cca8 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Sat, 22 Apr 2023 13:23:24 +0200 Subject: [PATCH 1/3] Add the Win32_System_Console feature since it is used --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 66c3e5f58..689425989 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -90,6 +90,7 @@ features = [ "Win32_Foundation", "Win32_Storage_FileSystem", "Win32_System_IO", + "Win32_System_Console", "Win32_System_Threading", "Win32_System_JobObjects", "Win32_Security", From 69be516ead1640c7188088a36105205ecc6a0eaa Mon Sep 17 00:00:00 2001 From: bors Date: Thu, 20 Apr 2023 22:49:18 +0000 Subject: [PATCH 2/3] Auto merge of #12011 - ehuss:fix-semver-checks, r=epage Fix semver checks for 1.69 There is a small wording change in the 1.69 release that was causing this test to fail. --- src/doc/src/reference/semver.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/src/reference/semver.md b/src/doc/src/reference/semver.md index c8d7167fc..22c42610f 100644 --- a/src/doc/src/reference/semver.md +++ b/src/doc/src/reference/semver.md @@ -944,7 +944,7 @@ pub fn foo() {} use updated_crate::foo; fn main() { - foo::(); // Error: this function takes 2 generic arguments but 1 generic argument was supplied + foo::(); // Error: function takes 2 generic arguments but 1 generic argument was supplied } ``` From 8cdc12cd0a741f88e43f72abfb2102ad8b6e6b2e Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Tue, 25 Apr 2023 11:31:57 -0700 Subject: [PATCH 3/3] Bump patch version of `cargo`. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 689425989..aac1018fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo" -version = "0.70.0" +version = "0.70.1" edition = "2021" license = "MIT OR Apache-2.0" homepage = "https://crates.io"