about summary refs log tree commit diff
path: root/library/alloc
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2024-02-03 16:37:58 -0500
committerMark Rousskov <mark.simulacrum@gmail.com>2024-02-08 07:43:38 -0500
commit8043821b3aa7267f56cc4a73f7edcdf9d8d1614e (patch)
tree05acd5ce86e532776fef6cdfdd5fc3045f69d066 /library/alloc
parentaf88f7db51f6f2a1472f9279d7c7e7c822afff77 (diff)
downloadrust-8043821b3aa7267f56cc4a73f7edcdf9d8d1614e.tar.gz
rust-8043821b3aa7267f56cc4a73f7edcdf9d8d1614e.zip
Bump version placeholders
Diffstat (limited to 'library/alloc')
-rw-r--r--library/alloc/src/slice.rs2
-rw-r--r--library/alloc/src/vec/cow.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/library/alloc/src/slice.rs b/library/alloc/src/slice.rs
index 4033f4eb068..f4e392760c8 100644
--- a/library/alloc/src/slice.rs
+++ b/library/alloc/src/slice.rs
@@ -51,7 +51,7 @@ pub use core::slice::{from_mut, from_ref};
 pub use core::slice::{from_mut_ptr_range, from_ptr_range};
 #[stable(feature = "rust1", since = "1.0.0")]
 pub use core::slice::{from_raw_parts, from_raw_parts_mut};
-#[stable(feature = "slice_group_by", since = "CURRENT_RUSTC_VERSION")]
+#[stable(feature = "slice_group_by", since = "1.77.0")]
 pub use core::slice::{ChunkBy, ChunkByMut};
 #[stable(feature = "rust1", since = "1.0.0")]
 pub use core::slice::{Chunks, Windows};
diff --git a/library/alloc/src/vec/cow.rs b/library/alloc/src/vec/cow.rs
index b12910f3690..3fe83242a30 100644
--- a/library/alloc/src/vec/cow.rs
+++ b/library/alloc/src/vec/cow.rs
@@ -15,7 +15,7 @@ impl<'a, T: Clone> From<&'a [T]> for Cow<'a, [T]> {
     }
 }
 
-#[stable(feature = "cow_from_array_ref", since = "CURRENT_RUSTC_VERSION")]
+#[stable(feature = "cow_from_array_ref", since = "1.77.0")]
 impl<'a, T: Clone, const N: usize> From<&'a [T; N]> for Cow<'a, [T]> {
     /// Creates a [`Borrowed`] variant of [`Cow`]
     /// from a reference to an array.