From c821b716322238bcb80fb9ef81e75ce7a00bdf9c Mon Sep 17 00:00:00 2001 From: Jacob Kiesel Date: Sat, 15 Jan 2022 12:48:24 -0700 Subject: [PATCH 1/2] stabilize windows_process_extensions_raw_arg --- library/std/src/os/windows/process.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/os/windows/process.rs b/library/std/src/os/windows/process.rs index 9510d104806db..dd61a4f95d6c0 100644 --- a/library/std/src/os/windows/process.rs +++ b/library/std/src/os/windows/process.rs @@ -159,7 +159,7 @@ pub trait CommandExt: Sealed { /// /// This is useful for passing arguments to `cmd.exe /c`, which doesn't follow /// `CommandLineToArgvW` escaping rules. - #[unstable(feature = "windows_process_extensions_raw_arg", issue = "29494")] + #[stable(feature = "windows_process_extensions_raw_arg", since = "1.61.0")] fn raw_arg>(&mut self, text_to_append_as_is: S) -> &mut process::Command; } From 66e05c2f7cc3425b7f3bd2e8e46ddbbd003e675d Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 4 Apr 2022 10:15:28 -0700 Subject: [PATCH 2/2] Bump windows CommandExt::raw_arg to 1.62 --- library/std/src/os/windows/process.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/os/windows/process.rs b/library/std/src/os/windows/process.rs index dd61a4f95d6c0..e189630991436 100644 --- a/library/std/src/os/windows/process.rs +++ b/library/std/src/os/windows/process.rs @@ -159,7 +159,7 @@ pub trait CommandExt: Sealed { /// /// This is useful for passing arguments to `cmd.exe /c`, which doesn't follow /// `CommandLineToArgvW` escaping rules. - #[stable(feature = "windows_process_extensions_raw_arg", since = "1.61.0")] + #[stable(feature = "windows_process_extensions_raw_arg", since = "1.62.0")] fn raw_arg>(&mut self, text_to_append_as_is: S) -> &mut process::Command; }