Skip to content

Commit

Permalink
Merge pull request #36 from Marcondiro/master
Browse files Browse the repository at this point in the history
Bump Unicode to version 15.1.0, regenerate tables
  • Loading branch information
Manishearth committed Feb 15, 2024
2 parents 9afe467 + 324374c commit f8cbac9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ on std, and instead uses equivalent functions from core.

# changelog

## 0.2.5

- Update to Unicode 15.1.0.

## 0.2.4

- Update to Unicode 15.0.0.
Expand Down
10 changes: 6 additions & 4 deletions src/tables.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

/// The version of [Unicode](http://www.unicode.org/)
/// that this version of unicode-xid is based on.
pub const UNICODE_VERSION: (u64, u64, u64) = (15, 0, 0);
pub const UNICODE_VERSION: (u64, u64, u64) = (15, 1, 0);

fn bsearch_range_table(c: char, r: &[(char, char)]) -> bool {
use core::cmp::Ordering::{Equal, Greater, Less};
Expand Down Expand Up @@ -338,6 +338,7 @@ pub mod derived_property {
('\u{1fe0}', '\u{1fec}'),
('\u{1ff2}', '\u{1ff4}'),
('\u{1ff6}', '\u{1ffc}'),
('\u{200c}', '\u{200d}'),
('\u{203f}', '\u{2040}'),
('\u{2054}', '\u{2054}'),
('\u{2071}', '\u{2071}'),
Expand Down Expand Up @@ -383,8 +384,7 @@ pub mod derived_property {
('\u{3041}', '\u{3096}'),
('\u{3099}', '\u{309a}'),
('\u{309d}', '\u{309f}'),
('\u{30a1}', '\u{30fa}'),
('\u{30fc}', '\u{30ff}'),
('\u{30a1}', '\u{30ff}'),
('\u{3105}', '\u{312f}'),
('\u{3131}', '\u{318e}'),
('\u{31a0}', '\u{31bf}'),
Expand Down Expand Up @@ -468,7 +468,7 @@ pub mod derived_property {
('\u{ff21}', '\u{ff3a}'),
('\u{ff3f}', '\u{ff3f}'),
('\u{ff41}', '\u{ff5a}'),
('\u{ff66}', '\u{ffbe}'),
('\u{ff65}', '\u{ffbe}'),
('\u{ffc2}', '\u{ffc7}'),
('\u{ffca}', '\u{ffcf}'),
('\u{ffd2}', '\u{ffd7}'),
Expand Down Expand Up @@ -809,6 +809,7 @@ pub mod derived_property {
('\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 Expand Up @@ -1483,6 +1484,7 @@ pub mod derived_property {
('\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

0 comments on commit f8cbac9

Please sign in to comment.