Skip to content

Commit

Permalink
Merge pull request #124 from syvb/unicode-15-1
Browse files Browse the repository at this point in the history
Support Unicode 15.1
  • Loading branch information
Manishearth committed Sep 25, 2023
2 parents 3d7266d + 69f3b02 commit 6191f8e
Show file tree
Hide file tree
Showing 5 changed files with 3,230 additions and 4,958 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/rust.yml
Expand Up @@ -29,4 +29,6 @@ jobs:
- name: Rustfmt
run: cargo fmt --check
- name: Verify regenerated files
run: ./scripts/unicode.py && diff tables.rs src/tables.rs
run: ./scripts/unicode.py && diff tables.rs src/tables.rs
- name: Verify regenerated tests
run: ./scripts/unicode_gen_breaktests.py && rustfmt testdata.rs && diff testdata.rs src/testdata.rs
2 changes: 1 addition & 1 deletion scripts/unicode.py
Expand Up @@ -54,7 +54,7 @@
# these are the surrogate codepoints, which are not valid rust characters
surrogate_codepoints = (0xd800, 0xdfff)

UNICODE_VERSION = (15, 0, 0)
UNICODE_VERSION = (15, 1, 0)

UNICODE_VERSION_NUMBER = "%s.%s.%s" %UNICODE_VERSION

Expand Down

0 comments on commit 6191f8e

Please sign in to comment.