File tree 3 files changed +8
-7
lines changed
3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -34,9 +34,7 @@ pub use self::convert::ParseCharError;
34
34
pub use self :: convert:: { from_digit, from_u32} ;
35
35
#[ stable( feature = "decode_utf16" , since = "1.9.0" ) ]
36
36
pub use self :: decode:: { decode_utf16, DecodeUtf16 , DecodeUtf16Error } ;
37
-
38
- // unstable re-exports
39
- #[ unstable( feature = "unicode_version" , issue = "49726" ) ]
37
+ #[ stable( feature = "unicode_version" , since = "1.45.0" ) ]
40
38
pub use crate :: unicode:: UNICODE_VERSION ;
41
39
42
40
use crate :: fmt:: { self , Write } ;
Original file line number Diff line number Diff line change @@ -7,9 +7,14 @@ mod unicode_data;
7
7
/// The version of [Unicode](http://www.unicode.org/) that the Unicode parts of
8
8
/// `char` and `str` methods are based on.
9
9
///
10
+ /// New versions of Unicode are released regularly and subsequently all methods
11
+ /// in the standard library depending on Unicode are updated. Therefore the
12
+ /// behavior of some `char` and `str` methods and the value of this constant
13
+ /// changes over time. This is *not* considered to be a breaking change.
14
+ ///
10
15
/// The version numbering scheme is explained in
11
16
/// [Unicode 11.0 or later, Section 3.1 Versions of the Unicode Standard](https://www.unicode.org/versions/Unicode11.0.0/ch03.pdf#page=4).
12
- #[ unstable ( feature = "unicode_version" , issue = "49726 " ) ]
17
+ #[ stable ( feature = "unicode_version" , since = "1.45.0 " ) ]
13
18
pub const UNICODE_VERSION : ( u8 , u8 , u8 ) = unicode_data:: UNICODE_VERSION ;
14
19
15
20
// For use in liballoc, not re-exported in libstd.
Original file line number Diff line number Diff line change 1
1
// run-pass
2
2
3
- #![ feature( unicode_version) ]
4
-
5
- /// Tests access to the internal Unicode Version type and value.
3
+ /// Tests access to the Unicode version constant.
6
4
pub fn main ( ) {
7
5
check ( std:: char:: UNICODE_VERSION ) ;
8
6
}
You can’t perform that action at this time.
0 commit comments