@@ -30,7 +30,7 @@ use crate::{cfg_select, intrinsics, mem};
3030/// let r = f32::RADIX;
3131/// ```
3232#[ stable( feature = "rust1" , since = "1.0.0" ) ]
33- #[ deprecated( since = "TBD " , note = "replaced by the `RADIX` associated constant on `f32`" ) ]
33+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `RADIX` associated constant on `f32`" ) ]
3434#[ rustc_diagnostic_item = "f32_legacy_const_radix" ]
3535pub const RADIX : u32 = f32:: RADIX ;
3636
@@ -49,7 +49,7 @@ pub const RADIX: u32 = f32::RADIX;
4949/// ```
5050#[ stable( feature = "rust1" , since = "1.0.0" ) ]
5151#[ deprecated(
52- since = "TBD " ,
52+ since = "1.92.0 " ,
5353 note = "replaced by the `MANTISSA_DIGITS` associated constant on `f32`"
5454) ]
5555#[ rustc_diagnostic_item = "f32_legacy_const_mantissa_dig" ]
@@ -69,7 +69,7 @@ pub const MANTISSA_DIGITS: u32 = f32::MANTISSA_DIGITS;
6969/// let d = f32::DIGITS;
7070/// ```
7171#[ stable( feature = "rust1" , since = "1.0.0" ) ]
72- #[ deprecated( since = "TBD " , note = "replaced by the `DIGITS` associated constant on `f32`" ) ]
72+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `DIGITS` associated constant on `f32`" ) ]
7373#[ rustc_diagnostic_item = "f32_legacy_const_digits" ]
7474pub const DIGITS : u32 = f32:: DIGITS ;
7575
@@ -91,7 +91,7 @@ pub const DIGITS: u32 = f32::DIGITS;
9191/// let e = f32::EPSILON;
9292/// ```
9393#[ stable( feature = "rust1" , since = "1.0.0" ) ]
94- #[ deprecated( since = "TBD " , note = "replaced by the `EPSILON` associated constant on `f32`" ) ]
94+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `EPSILON` associated constant on `f32`" ) ]
9595#[ rustc_diagnostic_item = "f32_legacy_const_epsilon" ]
9696pub const EPSILON : f32 = f32:: EPSILON ;
9797
@@ -109,7 +109,7 @@ pub const EPSILON: f32 = f32::EPSILON;
109109/// let min = f32::MIN;
110110/// ```
111111#[ stable( feature = "rust1" , since = "1.0.0" ) ]
112- #[ deprecated( since = "TBD " , note = "replaced by the `MIN` associated constant on `f32`" ) ]
112+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `MIN` associated constant on `f32`" ) ]
113113#[ rustc_diagnostic_item = "f32_legacy_const_min" ]
114114pub const MIN : f32 = f32:: MIN ;
115115
@@ -127,7 +127,10 @@ pub const MIN: f32 = f32::MIN;
127127/// let min = f32::MIN_POSITIVE;
128128/// ```
129129#[ stable( feature = "rust1" , since = "1.0.0" ) ]
130- #[ deprecated( since = "TBD" , note = "replaced by the `MIN_POSITIVE` associated constant on `f32`" ) ]
130+ #[ deprecated(
131+ since = "1.92.0" ,
132+ note = "replaced by the `MIN_POSITIVE` associated constant on `f32`"
133+ ) ]
131134#[ rustc_diagnostic_item = "f32_legacy_const_min_positive" ]
132135pub const MIN_POSITIVE : f32 = f32:: MIN_POSITIVE ;
133136
@@ -145,7 +148,7 @@ pub const MIN_POSITIVE: f32 = f32::MIN_POSITIVE;
145148/// let max = f32::MAX;
146149/// ```
147150#[ stable( feature = "rust1" , since = "1.0.0" ) ]
148- #[ deprecated( since = "TBD " , note = "replaced by the `MAX` associated constant on `f32`" ) ]
151+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `MAX` associated constant on `f32`" ) ]
149152#[ rustc_diagnostic_item = "f32_legacy_const_max" ]
150153pub const MAX : f32 = f32:: MAX ;
151154
@@ -163,7 +166,7 @@ pub const MAX: f32 = f32::MAX;
163166/// let min = f32::MIN_EXP;
164167/// ```
165168#[ stable( feature = "rust1" , since = "1.0.0" ) ]
166- #[ deprecated( since = "TBD " , note = "replaced by the `MIN_EXP` associated constant on `f32`" ) ]
169+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `MIN_EXP` associated constant on `f32`" ) ]
167170#[ rustc_diagnostic_item = "f32_legacy_const_min_exp" ]
168171pub const MIN_EXP : i32 = f32:: MIN_EXP ;
169172
@@ -181,7 +184,7 @@ pub const MIN_EXP: i32 = f32::MIN_EXP;
181184/// let max = f32::MAX_EXP;
182185/// ```
183186#[ stable( feature = "rust1" , since = "1.0.0" ) ]
184- #[ deprecated( since = "TBD " , note = "replaced by the `MAX_EXP` associated constant on `f32`" ) ]
187+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `MAX_EXP` associated constant on `f32`" ) ]
185188#[ rustc_diagnostic_item = "f32_legacy_const_max_exp" ]
186189pub const MAX_EXP : i32 = f32:: MAX_EXP ;
187190
@@ -199,7 +202,7 @@ pub const MAX_EXP: i32 = f32::MAX_EXP;
199202/// let min = f32::MIN_10_EXP;
200203/// ```
201204#[ stable( feature = "rust1" , since = "1.0.0" ) ]
202- #[ deprecated( since = "TBD " , note = "replaced by the `MIN_10_EXP` associated constant on `f32`" ) ]
205+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `MIN_10_EXP` associated constant on `f32`" ) ]
203206#[ rustc_diagnostic_item = "f32_legacy_const_min_10_exp" ]
204207pub const MIN_10_EXP : i32 = f32:: MIN_10_EXP ;
205208
@@ -217,7 +220,7 @@ pub const MIN_10_EXP: i32 = f32::MIN_10_EXP;
217220/// let max = f32::MAX_10_EXP;
218221/// ```
219222#[ stable( feature = "rust1" , since = "1.0.0" ) ]
220- #[ deprecated( since = "TBD " , note = "replaced by the `MAX_10_EXP` associated constant on `f32`" ) ]
223+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `MAX_10_EXP` associated constant on `f32`" ) ]
221224#[ rustc_diagnostic_item = "f32_legacy_const_max_10_exp" ]
222225pub const MAX_10_EXP : i32 = f32:: MAX_10_EXP ;
223226
@@ -235,7 +238,7 @@ pub const MAX_10_EXP: i32 = f32::MAX_10_EXP;
235238/// let nan = f32::NAN;
236239/// ```
237240#[ stable( feature = "rust1" , since = "1.0.0" ) ]
238- #[ deprecated( since = "TBD " , note = "replaced by the `NAN` associated constant on `f32`" ) ]
241+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `NAN` associated constant on `f32`" ) ]
239242#[ rustc_diagnostic_item = "f32_legacy_const_nan" ]
240243pub const NAN : f32 = f32:: NAN ;
241244
@@ -253,7 +256,7 @@ pub const NAN: f32 = f32::NAN;
253256/// let inf = f32::INFINITY;
254257/// ```
255258#[ stable( feature = "rust1" , since = "1.0.0" ) ]
256- #[ deprecated( since = "TBD " , note = "replaced by the `INFINITY` associated constant on `f32`" ) ]
259+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `INFINITY` associated constant on `f32`" ) ]
257260#[ rustc_diagnostic_item = "f32_legacy_const_infinity" ]
258261pub const INFINITY : f32 = f32:: INFINITY ;
259262
@@ -271,7 +274,10 @@ pub const INFINITY: f32 = f32::INFINITY;
271274/// let ninf = f32::NEG_INFINITY;
272275/// ```
273276#[ stable( feature = "rust1" , since = "1.0.0" ) ]
274- #[ deprecated( since = "TBD" , note = "replaced by the `NEG_INFINITY` associated constant on `f32`" ) ]
277+ #[ deprecated(
278+ since = "1.92.0" ,
279+ note = "replaced by the `NEG_INFINITY` associated constant on `f32`"
280+ ) ]
275281#[ rustc_diagnostic_item = "f32_legacy_const_neg_infinity" ]
276282pub const NEG_INFINITY : f32 = f32:: NEG_INFINITY ;
277283
0 commit comments