8000 Bump Unicode to version 15.1.0, regenerate tables · unicode-rs/unicode-normalization@2810fe2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2810fe2

Browse files
committed
Bump Unicode to version 15.1.0, regenerate tables
1 parent d4318ad commit 2810fe2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

scripts/unicode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import collections
2222
import urllib.request
2323

24-
UNICODE_VERSION = "15.0.0"
24+
UNICODE_VERSION = "15.1.0"
2525
UCD_URL = "https://www.unicode.org/Public/%s/ucd/" % UNICODE_VERSION
2626

2727
PREAMBLE = """// Copyright 2012-2018 The Rust Project Developers. See the COPYRIGHT

src/tables.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use crate::quick_check::IsNormalized;
1515
use crate::quick_check::IsNormalized::*;
1616

1717
#[allow(unused)]
18-
pub const UNICODE_VERSION: (u8, u8, u8) = (15, 0, 0);
18+
pub const UNICODE_VERSION: (u8, u8, u8) = (15, 1, 0);
1919

2020
pub(crate) const CANONICAL_COMBINING_CLASS_SALT: &[u16] = &[
2121
0x0,
@@ -33841,14 +33841,13 @@ pub fn is_public_assigned(c: char) -> bool {
3384133841
| '\u{2E80}'..='\u{2E99}'
3384233842
| '\u{2E9B}'..='\u{2EF3}'
3384333843
| '\u{2F00}'..='\u{2FD5}'
33844-
| '\u{2FF0}'..='\u{2FFB}'
33845-
| '\u{3000}'..='\u{303F}'
33844+
| '\u{2FF0}'..='\u{303F}'
3384633845
| '\u{3041}'..='\u{3096}'
3384733846
| '\u{3099}'..='\u{30FF}'
3384833847
| '\u{3105}'..='\u{312F}'
3384933848
| '\u{3131}'..='\u{318E}'
3385033849
| '\u{3190}'..='\u{31E3}'
33851-
| '\u{31F0}'..='\u{321E}'
33850+
| '\u{31EF}'..='\u{321E}'
3385233851
| '\u{3220}'..='\u{A48C}'
3385333852
| '\u{A490}'..='\u{A4C6}'
3385433853
| '\u{A4D0}'..='\u{A62B}'
@@ -34271,6 +34270,7 @@ pub fn is_public_assigned(c: char) -> bool {
3427134270
| '\u{2B740}'..='\u{2B81D}'
3427234271
| '\u{2B820}'..='\u{2CEA1}'
3427334272
| '\u{2CEB0}'..='\u{2EBE0}'
34273+
| '\u{2EBF0}'..='\u{2EE5D}'
3427434274
| '\u{2F800}'..='\u{2FA1D}'
3427534275
| '\u{30000}'..='\u{3134A}'
3427634276
| '\u{31350}'..='\u{323AF}'

0 commit comments

Comments
 (0)
0