Skip to content

Update Unicode to version 15.1.0, bump to 0.1.23 #91

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "unicode-normalization"
version = "0.1.22"
version = "0.1.23"
authors = ["kwantam <[email protected]>", "Manish Goregaokar <[email protected]>"]

homepage = "https://github.com/unicode-rs/unicode-normalization"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ to your `Cargo.toml`:

```toml
[dependencies]
unicode-normalization = "0.1.22"
unicode-normalization = "0.1.23"
```

## `no_std` + `alloc` support
Expand Down
2 changes: 1 addition & 1 deletion scripts/unicode.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import collections
import urllib.request

UNICODE_VERSION = "15.0.0"
UNICODE_VERSION = "15.1.0"
UCD_URL = "https://www.unicode.org/Public/%s/ucd/" % UNICODE_VERSION

PREAMBLE = """// Copyright 2012-2018 The Rust Project Developers. See the COPYRIGHT
Expand Down
8 changes: 4 additions & 4 deletions src/tables.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use crate::quick_check::IsNormalized;
use crate::quick_check::IsNormalized::*;

#[allow(unused)]
pub const UNICODE_VERSION: (u8, u8, u8) = (15, 0, 0);
pub const UNICODE_VERSION: (u8, u8, u8) = (15, 1, 0);

pub(crate) const CANONICAL_COMBINING_CLASS_SALT: &[u16] = &[
0x0,
Expand Down Expand Up @@ -33841,14 +33841,13 @@ pub fn is_public_assigned(c: char) -> bool {
| '\u{2E80}'..='\u{2E99}'
| '\u{2E9B}'..='\u{2EF3}'
| '\u{2F00}'..='\u{2FD5}'
| '\u{2FF0}'..='\u{2FFB}'
| '\u{3000}'..='\u{303F}'
| '\u{2FF0}'..='\u{303F}'
| '\u{3041}'..='\u{3096}'
| '\u{3099}'..='\u{30FF}'
| '\u{3105}'..='\u{312F}'
| '\u{3131}'..='\u{318E}'
| '\u{3190}'..='\u{31E3}'
| '\u{31F0}'..='\u{321E}'
| '\u{31EF}'..='\u{321E}'
| '\u{3220}'..='\u{A48C}'
| '\u{A490}'..='\u{A4C6}'
| '\u{A4D0}'..='\u{A62B}'
Expand Down Expand Up @@ -34271,6 +34270,7 @@ pub fn is_public_assigned(c: char) -> bool {
| '\u{2B740}'..='\u{2B81D}'
| '\u{2B820}'..='\u{2CEA1}'
| '\u{2CEB0}'..='\u{2EBE0}'
| '\u{2EBF0}'..='\u{2EE5D}'
| '\u{2F800}'..='\u{2FA1D}'
| '\u{30000}'..='\u{3134A}'
| '\u{31350}'..='\u{323AF}'
Expand Down