]> git.lizzy.rs Git - rust.git/commitdiff
Bump windows CommandExt::raw_arg to 1.62
authorDavid Tolnay <dtolnay@gmail.com>
Mon, 4 Apr 2022 17:15:28 +0000 (10:15 -0700)
committerDavid Tolnay <dtolnay@gmail.com>
Mon, 4 Apr 2022 17:15:28 +0000 (10:15 -0700)
library/std/src/os/windows/process.rs

index dd61a4f95d6c02895bd784d0d07d24be8c45feab..e189630991436c1994b03b3e94de05d8306e59db 100644 (file)
@@ -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<S: AsRef<OsStr>>(&mut self, text_to_append_as_is: S) -> &mut process::Command;
 }