Skip to content

Commit eae13d1

Browse files
committed
replace placeholder version
(cherry picked from commit 567fd96)
1 parent fbde7e8 commit eae13d1

28 files changed

+156
-165
lines changed

core/src/array/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ pub const fn from_ref<T>(s: &T) -> &[T; 1] {
146146

147147
/// Converts a mutable reference to `T` into a mutable reference to an array of length 1 (without copying).
148148
#[stable(feature = "array_from_ref", since = "1.53.0")]
149-
#[rustc_const_stable(feature = "const_array_from_ref", since = "CURRENT_RUSTC_VERSION")]
149+
#[rustc_const_stable(feature = "const_array_from_ref", since = "1.83.0")]
150150
#[cfg_attr(bootstrap, rustc_allow_const_fn_unstable(const_mut_refs))]
151151
pub const fn from_mut<T>(s: &mut T) -> &mut [T; 1] {
152152
// SAFETY: Converting `&mut T` to `&mut [T; 1]` is sound.

core/src/cell.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ impl<T> Cell<T> {
515515
/// assert_eq!(five, 5);
516516
/// ```
517517
#[stable(feature = "move_cell", since = "1.17.0")]
518-
#[rustc_const_stable(feature = "const_cell_into_inner", since = "CURRENT_RUSTC_VERSION")]
518+
#[rustc_const_stable(feature = "const_cell_into_inner", since = "1.83.0")]
519519
#[rustc_allow_const_fn_unstable(const_precise_live_drops)]
520520
pub const fn into_inner(self) -> T {
521521
self.value.into_inner()
@@ -864,7 +864,7 @@ impl<T> RefCell<T> {
864864
/// let five = c.into_inner();
865865
/// ```
866866
#[stable(feature = "rust1", since = "1.0.0")]
867-
#[rustc_const_stable(feature = "const_cell_into_inner", since = "CURRENT_RUSTC_VERSION")]
867+
#[rustc_const_stable(feature = "const_cell_into_inner", since = "1.83.0")]
868868
#[rustc_allow_const_fn_unstable(const_precise_live_drops)]
869869
#[inline]
870870
pub const fn into_inner(self) -> T {
@@ -2108,7 +2108,7 @@ impl<T> UnsafeCell<T> {
21082108
/// ```
21092109
#[inline(always)]
21102110
#[stable(feature = "rust1", since = "1.0.0")]
2111-
#[rustc_const_stable(feature = "const_cell_into_inner", since = "CURRENT_RUSTC_VERSION")]
2111+
#[rustc_const_stable(feature = "const_cell_into_inner", since = "1.83.0")]
21122112
#[rustc_allow_const_fn_unstable(const_precise_live_drops)]
21132113
pub const fn into_inner(self) -> T {
21142114
self.value
@@ -2182,7 +2182,7 @@ impl<T: ?Sized> UnsafeCell<T> {
21822182
#[inline(always)]
21832183
#[stable(feature = "unsafe_cell_get_mut", since = "1.50.0")]
21842184
#[cfg_attr(bootstrap, rustc_allow_const_fn_unstable(const_mut_refs))]
2185-
#[rustc_const_stable(feature = "const_unsafecell_get_mut", since = "CURRENT_RUSTC_VERSION")]
2185+
#[rustc_const_stable(feature = "const_unsafecell_get_mut", since = "1.83.0")]
21862186
pub const fn get_mut(&mut self) -> &mut T {
21872187
&mut self.value
21882188
}

core/src/cell/once.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ impl<T> OnceCell<T> {
309309
/// ```
310310
#[inline]
311311
#[stable(feature = "once_cell", since = "1.70.0")]
312-
#[rustc_const_stable(feature = "const_cell_into_inner", since = "CURRENT_RUSTC_VERSION")]
312+
#[rustc_const_stable(feature = "const_cell_into_inner", since = "1.83.0")]
313313
#[rustc_allow_const_fn_unstable(const_precise_live_drops)]
314314
pub const fn into_inner(self) -> Option<T> {
315315
// Because `into_inner` takes `self` by value, the compiler statically verifies

core/src/char/methods.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ impl char {
3636
/// let value_at_min = u32::from(char::MIN);
3737
/// assert_eq!(char::from_u32(value_at_min), Some('\0'));
3838
/// ```
39-
#[stable(feature = "char_min", since = "CURRENT_RUSTC_VERSION")]
39+
#[stable(feature = "char_min", since = "1.83.0")]
4040
pub const MIN: char = '\0';
4141

4242
/// The highest valid code point a `char` can have, `'\u{10FFFF}'`.
@@ -674,7 +674,7 @@ impl char {
674674
/// 'ß'.encode_utf8(&mut b);
675675
/// ```
676676
#[stable(feature = "unicode_encode_char", since = "1.15.0")]
677-
#[rustc_const_stable(feature = "const_char_encode_utf8", since = "CURRENT_RUSTC_VERSION")]
677+
#[rustc_const_stable(feature = "const_char_encode_utf8", since = "1.83.0")]
678678
#[inline]
679679
#[cfg_attr(bootstrap, rustc_allow_const_fn_unstable(const_mut_refs))]
680680
pub const fn encode_utf8(self, dst: &mut [u8]) -> &mut str {
@@ -1773,7 +1773,7 @@ const fn len_utf16(code: u32) -> usize {
17731773
/// Panics if the buffer is not large enough.
17741774
/// A buffer of length four is large enough to encode any `char`.
17751775
#[unstable(feature = "char_internals", reason = "exposed only for libstd", issue = "none")]
1776-
#[rustc_const_stable(feature = "const_char_encode_utf8", since = "CURRENT_RUSTC_VERSION")]
1776+
#[rustc_const_stable(feature = "const_char_encode_utf8", since = "1.83.0")]
17771777
#[doc(hidden)]
17781778
#[inline]
17791779
#[rustc_allow_const_fn_unstable(const_eval_select)]

core/src/fmt/builders.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ impl<'a, 'b: 'a> DebugTuple<'a, 'b> {
383383
/// "Foo(10, ..)",
384384
/// );
385385
/// ```
386-
#[stable(feature = "debug_more_non_exhaustive", since = "CURRENT_RUSTC_VERSION")]
386+
#[stable(feature = "debug_more_non_exhaustive", since = "1.83.0")]
387387
pub fn finish_non_exhaustive(&mut self) -> fmt::Result {
388388
self.result = self.result.and_then(|_| {
389389
if self.fields > 0 {
@@ -626,7 +626,7 @@ impl<'a, 'b: 'a> DebugSet<'a, 'b> {
626626
/// "{1, 2, ..}",
627627
/// );
628628
/// ```
629-
#[stable(feature = "debug_more_non_exhaustive", since = "CURRENT_RUSTC_VERSION")]
629+
#[stable(feature = "debug_more_non_exhaustive", since = "1.83.0")]
630630
pub fn finish_non_exhaustive(&mut self) -> fmt::Result {
631631
self.inner.result = self.inner.result.and_then(|_| {
632632
if self.inner.has_fields {
@@ -818,7 +818,7 @@ impl<'a, 'b: 'a> DebugList<'a, 'b> {
818818
/// "[1, 2, ..]",
819819
/// );
820820
/// ```
821-
#[stable(feature = "debug_more_non_exhaustive", since = "CURRENT_RUSTC_VERSION")]
821+
#[stable(feature = "debug_more_non_exhaustive", since = "1.83.0")]
822822
pub fn finish_non_exhaustive(&mut self) -> fmt::Result {
823823
self.inner.result.and_then(|_| {
824824
if self.inner.has_fields {
@@ -1146,7 +1146,7 @@ impl<'a, 'b: 'a> DebugMap<'a, 'b> {
11461146
/// r#"{"A": 10, "B": 11, ..}"#,
11471147
/// );
11481148
/// ```
1149-
#[stable(feature = "debug_more_non_exhaustive", since = "CURRENT_RUSTC_VERSION")]
1149+
#[stable(feature = "debug_more_non_exhaustive", since = "1.83.0")]
11501150
pub fn finish_non_exhaustive(&mut self) -> fmt::Result {
11511151
self.result = self.result.and_then(|_| {
11521152
assert!(!self.has_key, "attempted to finish a map with a partial entry");

core/src/intrinsics.rs

+10-10
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,7 @@ extern "rust-intrinsic" {
10851085
/// it does not require an `unsafe` block.
10861086
/// Therefore, implementations must not require the user to uphold
10871087
/// any safety invariants.
1088-
#[rustc_const_stable(feature = "const_intrinsic_forget", since = "CURRENT_RUSTC_VERSION")]
1088+
#[rustc_const_stable(feature = "const_intrinsic_forget", since = "1.83.0")]
10891089
#[rustc_safe_intrinsic]
10901090
#[rustc_nounwind]
10911091
pub fn forget<T: ?Sized>(_: T);
@@ -2541,7 +2541,7 @@ extern "rust-intrinsic" {
25412541
/// This intrinsic can *only* be called where the pointer is a local without
25422542
/// projections (`write_via_move(ptr, x)`, not `write_via_move(*ptr, x)`) so
25432543
/// that it trivially obeys runtime-MIR rules about derefs in operands.
2544-
#[rustc_const_stable(feature = "const_ptr_write", since = "CURRENT_RUSTC_VERSION")]
2544+
#[rustc_const_stable(feature = "const_ptr_write", since = "1.83.0")]
25452545
#[rustc_nounwind]
25462546
pub fn write_via_move<T>(ptr: *mut T, value: T);
25472547

@@ -3070,7 +3070,7 @@ pub const fn type_id<T: ?Sized + 'static>() -> u128 {
30703070
/// change the possible layouts of pointers.
30713071
#[rustc_nounwind]
30723072
#[unstable(feature = "core_intrinsics", issue = "none")]
3073-
#[rustc_const_stable(feature = "ptr_metadata_const", since = "CURRENT_RUSTC_VERSION")]
3073+
#[rustc_const_stable(feature = "ptr_metadata_const", since = "1.83.0")]
30743074
#[rustc_intrinsic]
30753075
#[rustc_intrinsic_must_be_overridden]
30763076
pub const fn aggregate_raw_ptr<P: AggregateRawPtr<D, Metadata = M>, D, M>(_data: D, _meta: M) -> P {
@@ -3095,7 +3095,7 @@ impl<P: ?Sized, T: ptr::Thin> AggregateRawPtr<*mut T> for *mut P {
30953095
/// This is used to implement functions like `ptr::metadata`.
30963096
#[rustc_nounwind]
30973097
#[unstable(feature = "core_intrinsics", issue = "none")]
3098-
#[rustc_const_stable(feature = "ptr_metadata_const", since = "CURRENT_RUSTC_VERSION")]
3098+
#[rustc_const_stable(feature = "ptr_metadata_const", since = "1.83.0")]
30993099
#[rustc_intrinsic]
31003100
#[rustc_intrinsic_must_be_overridden]
31013101
pub const fn ptr_metadata<P: ptr::Pointee<Metadata = M> + ?Sized, M>(_ptr: *const P) -> M {
@@ -3196,13 +3196,13 @@ pub const fn ptr_metadata<P: ptr::Pointee<Metadata = M> + ?Sized, M>(_ptr: *cons
31963196
#[doc(alias = "memcpy")]
31973197
#[stable(feature = "rust1", since = "1.0.0")]
31983198
#[rustc_allowed_through_unstable_modules]
3199-
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "CURRENT_RUSTC_VERSION")]
3199+
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "1.83.0")]
32003200
#[inline(always)]
32013201
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
32023202
#[rustc_diagnostic_item = "ptr_copy_nonoverlapping"]
32033203
pub const unsafe fn copy_nonoverlapping<T>(src: *const T, dst: *mut T, count: usize) {
32043204
extern "rust-intrinsic" {
3205-
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "CURRENT_RUSTC_VERSION")]
3205+
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "1.83.0")]
32063206
#[rustc_nounwind]
32073207
pub fn copy_nonoverlapping<T>(src: *const T, dst: *mut T, count: usize);
32083208
}
@@ -3300,13 +3300,13 @@ pub const unsafe fn copy_nonoverlapping<T>(src: *const T, dst: *mut T, count: us
33003300
#[doc(alias = "memmove")]
33013301
#[stable(feature = "rust1", since = "1.0.0")]
33023302
#[rustc_allowed_through_unstable_modules]
3303-
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "CURRENT_RUSTC_VERSION")]
3303+
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "1.83.0")]
33043304
#[inline(always)]
33053305
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
33063306
#[rustc_diagnostic_item = "ptr_copy"]
33073307
pub const unsafe fn copy<T>(src: *const T, dst: *mut T, count: usize) {
33083308
extern "rust-intrinsic" {
3309-
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "CURRENT_RUSTC_VERSION")]
3309+
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "1.83.0")]
33103310
#[rustc_nounwind]
33113311
fn copy<T>(src: *const T, dst: *mut T, count: usize);
33123312
}
@@ -3381,13 +3381,13 @@ pub const unsafe fn copy<T>(src: *const T, dst: *mut T, count: usize) {
33813381
#[doc(alias = "memset")]
33823382
#[stable(feature = "rust1", since = "1.0.0")]
33833383
#[rustc_allowed_through_unstable_modules]
3384-
#[rustc_const_stable(feature = "const_ptr_write", since = "CURRENT_RUSTC_VERSION")]
3384+
#[rustc_const_stable(feature = "const_ptr_write", since = "1.83.0")]
33853385
#[inline(always)]
33863386
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
33873387
#[rustc_diagnostic_item = "ptr_write_bytes"]
33883388
pub const unsafe fn write_bytes<T>(dst: *mut T, val: u8, count: usize) {
33893389
extern "rust-intrinsic" {
3390-
#[rustc_const_stable(feature = "const_ptr_write", since = "CURRENT_RUSTC_VERSION")]
3390+
#[rustc_const_stable(feature = "const_ptr_write", since = "1.83.0")]
33913391
#[rustc_nounwind]
33923392
fn write_bytes<T>(dst: *mut T, val: u8, count: usize);
33933393
}

core/src/mem/maybe_uninit.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -569,10 +569,7 @@ impl<T> MaybeUninit<T> {
569569
/// (Notice that the rules around references to uninitialized data are not finalized yet, but
570570
/// until they are, it is advisable to avoid them.)
571571
#[stable(feature = "maybe_uninit", since = "1.36.0")]
572-
#[rustc_const_stable(
573-
feature = "const_maybe_uninit_as_mut_ptr",
574-
since = "CURRENT_RUSTC_VERSION"
575-
)]
572+
#[rustc_const_stable(feature = "const_maybe_uninit_as_mut_ptr", since = "1.83.0")]
576573
#[cfg_attr(bootstrap, rustc_allow_const_fn_unstable(const_mut_refs))]
577574
#[inline(always)]
578575
pub const fn as_mut_ptr(&mut self) -> *mut T {

core/src/mem/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -858,7 +858,7 @@ pub fn take<T: Default>(dest: &mut T) -> T {
858858
#[stable(feature = "rust1", since = "1.0.0")]
859859
#[must_use = "if you don't need the old value, you can just assign the new value directly"]
860860
#[cfg_attr(bootstrap, rustc_allow_const_fn_unstable(const_mut_refs))]
861-
#[rustc_const_stable(feature = "const_replace", since = "CURRENT_RUSTC_VERSION")]
861+
#[rustc_const_stable(feature = "const_replace", since = "1.83.0")]
862862
#[cfg_attr(not(test), rustc_diagnostic_item = "mem_replace")]
863863
pub const fn replace<T>(dest: &mut T, src: T) -> T {
864864
// It may be tempting to use `swap` to avoid `unsafe` here. Don't!

core/src/num/f32.rs

+16-16
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ impl f32 {
517517
/// ```
518518
#[must_use]
519519
#[stable(feature = "rust1", since = "1.0.0")]
520-
#[rustc_const_stable(feature = "const_float_classify", since = "CURRENT_RUSTC_VERSION")]
520+
#[rustc_const_stable(feature = "const_float_classify", since = "1.83.0")]
521521
#[inline]
522522
#[allow(clippy::eq_op)] // > if you intended to check if the operand is NaN, use `.is_nan()` instead :)
523523
pub const fn is_nan(self) -> bool {
@@ -550,7 +550,7 @@ impl f32 {
550550
/// ```
551551
#[must_use]
552552
#[stable(feature = "rust1", since = "1.0.0")]
553-
#[rustc_const_stable(feature = "const_float_classify", since = "CURRENT_RUSTC_VERSION")]
553+
#[rustc_const_stable(feature = "const_float_classify", since = "1.83.0")]
554554
#[inline]
555555
pub const fn is_infinite(self) -> bool {
556556
// Getting clever with transmutation can result in incorrect answers on some FPUs
@@ -575,7 +575,7 @@ impl f32 {
575575
/// ```
576576
#[must_use]
577577
#[stable(feature = "rust1", since = "1.0.0")]
578-
#[rustc_const_stable(feature = "const_float_classify", since = "CURRENT_RUSTC_VERSION")]
578+
#[rustc_const_stable(feature = "const_float_classify", since = "1.83.0")]
579579
#[inline]
580580
pub const fn is_finite(self) -> bool {
581581
// There's no need to handle NaN separately: if self is NaN,
@@ -603,7 +603,7 @@ impl f32 {
603603
/// [subnormal]: https://en.wikipedia.org/wiki/Denormal_number
604604
#[must_use]
605605
#[stable(feature = "is_subnormal", since = "1.53.0")]
606-
#[rustc_const_stable(feature = "const_float_classify", since = "CURRENT_RUSTC_VERSION")]
606+
#[rustc_const_stable(feature = "const_float_classify", since = "1.83.0")]
607607
#[inline]
608608
pub const fn is_subnormal(self) -> bool {
609609
matches!(self.classify(), FpCategory::Subnormal)
@@ -630,7 +630,7 @@ impl f32 {
630630
/// [subnormal]: https://en.wikipedia.org/wiki/Denormal_number
631631
#[must_use]
632632
#[stable(feature = "rust1", since = "1.0.0")]
633-
#[rustc_const_stable(feature = "const_float_classify", since = "CURRENT_RUSTC_VERSION")]
633+
#[rustc_const_stable(feature = "const_float_classify", since = "1.83.0")]
634634
#[inline]
635635
pub const fn is_normal(self) -> bool {
636636
matches!(self.classify(), FpCategory::Normal)
@@ -650,7 +650,7 @@ impl f32 {
650650
/// assert_eq!(inf.classify(), FpCategory::Infinite);
651651
/// ```
652652
#[stable(feature = "rust1", since = "1.0.0")]
653-
#[rustc_const_stable(feature = "const_float_classify", since = "CURRENT_RUSTC_VERSION")]
653+
#[rustc_const_stable(feature = "const_float_classify", since = "1.83.0")]
654654
pub const fn classify(self) -> FpCategory {
655655
// We used to have complicated logic here that avoids the simple bit-based tests to work
656656
// around buggy codegen for x87 targets (see
@@ -686,7 +686,7 @@ impl f32 {
686686
/// ```
687687
#[must_use]
688688
#[stable(feature = "rust1", since = "1.0.0")]
689-
#[rustc_const_stable(feature = "const_float_classify", since = "CURRENT_RUSTC_VERSION")]
689+
#[rustc_const_stable(feature = "const_float_classify", since = "1.83.0")]
690690
#[inline]
691691
pub const fn is_sign_positive(self) -> bool {
692692
!self.is_sign_negative()
@@ -711,7 +711,7 @@ impl f32 {
711711
/// ```
712712
#[must_use]
713713
#[stable(feature = "rust1", since = "1.0.0")]
714-
#[rustc_const_stable(feature = "const_float_classify", since = "CURRENT_RUSTC_VERSION")]
714+
#[rustc_const_stable(feature = "const_float_classify", since = "1.83.0")]
715715
#[inline]
716716
pub const fn is_sign_negative(self) -> bool {
717717
// IEEE754 says: isSignMinus(x) is true if and only if x has negative sign. isSignMinus
@@ -1093,7 +1093,7 @@ impl f32 {
10931093
#[must_use = "this returns the result of the operation, \
10941094
without modifying the original"]
10951095
#[stable(feature = "float_bits_conv", since = "1.20.0")]
1096-
#[rustc_const_stable(feature = "const_float_bits_conv", since = "CURRENT_RUSTC_VERSION")]
1096+
#[rustc_const_stable(feature = "const_float_bits_conv", since = "1.83.0")]
10971097
#[inline]
10981098
pub const fn to_bits(self) -> u32 {
10991099
// SAFETY: `u32` is a plain old datatype so we can always transmute to it.
@@ -1137,7 +1137,7 @@ impl f32 {
11371137
/// assert_eq!(v, 12.5);
11381138
/// ```
11391139
#[stable(feature = "float_bits_conv", since = "1.20.0")]
1140-
#[rustc_const_stable(feature = "const_float_bits_conv", since = "CURRENT_RUSTC_VERSION")]
1140+
#[rustc_const_stable(feature = "const_float_bits_conv", since = "1.83.0")]
11411141
#[must_use]
11421142
#[inline]
11431143
pub const fn from_bits(v: u32) -> Self {
@@ -1161,7 +1161,7 @@ impl f32 {
11611161
#[must_use = "this returns the result of the operation, \
11621162
without modifying the original"]
11631163
#[stable(feature = "float_to_from_bytes", since = "1.40.0")]
1164-
#[rustc_const_stable(feature = "const_float_bits_conv", since = "CURRENT_RUSTC_VERSION")]
1164+
#[rustc_const_stable(feature = "const_float_bits_conv", since = "1.83.0")]
11651165
#[inline]
11661166
pub const fn to_be_bytes(self) -> [u8; 4] {
11671167
self.to_bits().to_be_bytes()
@@ -1182,7 +1182,7 @@ impl f32 {
11821182
#[must_use = "this returns the result of the operation, \
11831183
without modifying the original"]
11841184
#[stable(feature = "float_to_from_bytes", since = "1.40.0")]
1185-
#[rustc_const_stable(feature = "const_float_bits_conv", since = "CURRENT_RUSTC_VERSION")]
1185+
#[rustc_const_stable(feature = "const_float_bits_conv", since = "1.83.0")]
11861186
#[inline]
11871187
pub const fn to_le_bytes(self) -> [u8; 4] {
11881188
self.to_bits().to_le_bytes()
@@ -1216,7 +1216,7 @@ impl f32 {
12161216
#[must_use = "this returns the result of the operation, \
12171217
without modifying the original"]
12181218
#[stable(feature = "float_to_from_bytes", since = "1.40.0")]
1219-
#[rustc_const_stable(feature = "const_float_bits_conv", since = "CURRENT_RUSTC_VERSION")]
1219+
#[rustc_const_stable(feature = "const_float_bits_conv", since = "1.83.0")]
12201220
#[inline]
12211221
pub const fn to_ne_bytes(self) -> [u8; 4] {
12221222
self.to_bits().to_ne_bytes()
@@ -1234,7 +1234,7 @@ impl f32 {
12341234
/// assert_eq!(value, 12.5);
12351235
/// ```
12361236
#[stable(feature = "float_to_from_bytes", since = "1.40.0")]
1237-
#[rustc_const_stable(feature = "const_float_bits_conv", since = "CURRENT_RUSTC_VERSION")]
1237+
#[rustc_const_stable(feature = "const_float_bits_conv", since = "1.83.0")]
12381238
#[must_use]
12391239
#[inline]
12401240
pub const fn from_be_bytes(bytes: [u8; 4]) -> Self {
@@ -1253,7 +1253,7 @@ impl f32 {
12531253
/// assert_eq!(value, 12.5);
12541254
/// ```
12551255
#[stable(feature = "float_to_from_bytes", since = "1.40.0")]
1256-
#[rustc_const_stable(feature = "const_float_bits_conv", since = "CURRENT_RUSTC_VERSION")]
1256+
#[rustc_const_stable(feature = "const_float_bits_conv", since = "1.83.0")]
12571257
#[must_use]
12581258
#[inline]
12591259
pub const fn from_le_bytes(bytes: [u8; 4]) -> Self {
@@ -1283,7 +1283,7 @@ impl f32 {
12831283
/// assert_eq!(value, 12.5);
12841284
/// ```
12851285
#[stable(feature = "float_to_from_bytes", since = "1.40.0")]
1286-
#[rustc_const_stable(feature = "const_float_bits_conv", since = "CURRENT_RUSTC_VERSION")]
1286+
#[rustc_const_stable(feature = "const_float_bits_conv", since = "1.83.0")]
12871287
#[must_use]
12881288
#[inline]
12891289
pub const fn from_ne_bytes(bytes: [u8; 4]) -> Self {

0 commit comments

Comments
 (0)