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

Revert to previous version string format (#1002) #1028

Merged
merged 1 commit into from
Jan 30, 2025
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
4 changes: 2 additions & 2 deletions unicodetools/data/ucd/dev/emoji/emoji-data.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# emoji-data.txt
# Date: 2025-01-29, 17:53:31 GMT
# Date: 2025-01-30, 21:48:29 GMT
# © 2025 Unicode®, Inc.
# Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
# For terms of use and license, see https://www.unicode.org/terms_of_use.html
#
# Emoji Data for UTS #51
# Used with Emoji Version 17.0 and subsequent minor revisions (if any)
# Version: 17.0
#
# For documentation and usage, see https://www.unicode.org/reports/tr51
#
Expand Down
4 changes: 2 additions & 2 deletions unicodetools/data/ucd/dev/emoji/emoji-variation-sequences.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# emoji-variation-sequences.txt
# Date: 2025-01-08, 04:54:47 GMT
# Date: 2025-01-30, 21:48:29 GMT
# © 2025 Unicode®, Inc.
# Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
# For terms of use and license, see https://www.unicode.org/terms_of_use.html
#
# Emoji Variation Sequences for UTS #51
# Used with Emoji Version 17.0 and subsequent minor revisions (if any)
# Version: 17.0
#
# For documentation and usage, see https://www.unicode.org/reports/tr51
#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,7 @@ public static <T> void printData(EmojiDataSource emojiDataSource) throws IOExcep
.asPath(Emoji.VERSION_TO_GENERATE_UNICODE)
.toString()
+ "/emoji";
String versionTextForUCD =
"Used with Emoji Version "
+ Emoji.VERSION_UNICODE_STRING
+ " and subsequent minor revisions (if any)";
String versionTextForUCD = "Version: " + Emoji.VERSION_UNICODE_STRING;
UnicodeSet emojiMultiPersonGroupings = emojiDataSource.getMultiPersonGroupings();

PropPrinter printer = new PropPrinter().set(emojiDataSource);
Expand Down
Loading