Skip to content

Commit f9e6e80

Browse files
authored
Add enum and date for 18.0 (#1212)
* Add enum and date for 18.0 * Guess a different date
1 parent 9d2ccbd commit f9e6e80

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

unicodetools/data/emoji/dev/internal/emoji-ordering-rules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- Machine-readable version of the emoji ordering rules for v17.0 (corresponding to CLDR). -->
1+
<!-- Machine-readable version of the emoji ordering rules for v18.0 (corresponding to CLDR). -->
22
<collation type='emoji'>
33
<cr><![CDATA[
44
# START AUTOGENERATED EMOJI ORDER

unicodetools/src/main/java/org/unicode/tools/emoji/Emoji.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ public class Emoji {
8383
// situation)
8484

8585
// Constants for versions
86+
public static final VersionInfo VERSION18 = VersionInfo.getInstance(18);
8687
public static final VersionInfo VERSION17 = VersionInfo.getInstance(17);
8788
public static final VersionInfo VERSION16 = VersionInfo.getInstance(16);
8889
public static final VersionInfo VERSION15_1 = VersionInfo.getInstance(15, 1);
@@ -136,6 +137,7 @@ public class Emoji {
136137

137138
public static final Map<VersionInfo, String> EMOJI_TO_DATE =
138139
ImmutableMap.<VersionInfo, String>builder()
140+
.put(VERSION18, "2026-09-15")
139141
.put(VERSION17, "2025-09-09")
140142
.put(VERSION16, "2024-09-10")
141143
.put(VERSION15_1, "2023-09-12")

0 commit comments

Comments
 (0)