about summary refs log tree commit diff
path: root/library/std
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2023-01-24 08:40:09 -0500
committerMark Rousskov <mark.simulacrum@gmail.com>2023-01-25 09:44:29 -0500
commit3653254f91647df99b571d8cdf97be237077892b (patch)
treee572fe8a9cc6f88749467bd967cbef3fc908faae /library/std
parent9467f9553197e1dab950bdc842fd407b0ac2d59b (diff)
downloadrust-3653254f91647df99b571d8cdf97be237077892b.tar.gz
rust-3653254f91647df99b571d8cdf97be237077892b.zip
Set version placeholders to 1.68
Diffstat (limited to 'library/std')
-rw-r--r--library/std/src/path.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/path.rs b/library/std/src/path.rs
index 2f53cf83936..15308ac0e0d 100644
--- a/library/std/src/path.rs
+++ b/library/std/src/path.rs
@@ -271,7 +271,7 @@ pub const MAIN_SEPARATOR: char = crate::sys::path::MAIN_SEP;
 /// The primary separator of path components for the current platform.
 ///
 /// For example, `/` on Unix and `\` on Windows.
-#[stable(feature = "main_separator_str", since = "CURRENT_RUSTC_VERSION")]
+#[stable(feature = "main_separator_str", since = "1.68.0")]
 pub const MAIN_SEPARATOR_STR: &str = crate::sys::path::MAIN_SEP_STR;
 
 ////////////////////////////////////////////////////////////////////////////////
@@ -1778,7 +1778,7 @@ impl ops::Deref for PathBuf {
     }
 }
 
-#[stable(feature = "path_buf_deref_mut", since = "CURRENT_RUSTC_VERSION")]
+#[stable(feature = "path_buf_deref_mut", since = "1.68.0")]
 impl ops::DerefMut for PathBuf {
     #[inline]
     fn deref_mut(&mut self) -> &mut Path {