Skip to content

Commit aa0175c

Browse files
committed
Stabilize UNICODE_VERSION (feature unicode_version)
The feature will become stable in Rust 1.45. Noted that the value of UNICODE_VERSION is expected to change.
1 parent 4d1fbac commit aa0175c

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

src/libcore/char/mod.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,7 @@ pub use self::convert::ParseCharError;
3434
pub use self::convert::{from_digit, from_u32};
3535
#[stable(feature = "decode_utf16", since = "1.9.0")]
3636
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")]
4038
pub use crate::unicode::UNICODE_VERSION;
4139

4240
use crate::fmt::{self, Write};

src/libcore/unicode/mod.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,14 @@ mod unicode_data;
77
/// The version of [Unicode](http://www.unicode.org/) that the Unicode parts of
88
/// `char` and `str` methods are based on.
99
///
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+
///
1015
/// The version numbering scheme is explained in
1116
/// [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")]
1318
pub const UNICODE_VERSION: (u8, u8, u8) = unicode_data::UNICODE_VERSION;
1419

1520
// For use in liballoc, not re-exported in libstd.

src/test/ui/char_unicode.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
// run-pass
22

3-
#![feature(unicode_version)]
4-
5-
/// Tests access to the internal Unicode Version type and value.
3+
/// Tests access to the Unicode version constant.
64
pub fn main() {
75
check(std::char::UNICODE_VERSION);
86
}

0 commit comments

Comments
 (0)