Skip to content
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

Support Unicode 15.1 #124

Merged
merged 1 commit into from Sep 25, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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