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

Stop manually setting versions in AacOrder.java #935

Merged
merged 1 commit into from
Sep 17, 2024
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
9 changes: 0 additions & 9 deletions docs/emoji/aac.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,6 @@
Once the emoji are finalized for new version of TR51, or there is a new version
of CLDR, run AacOrder.java to generate 3 new files which will be checked in.

Fix the versions at the top of the file, such as:
```
private static final VersionInfo VERSION = Emoji.VERSION12;

private static final VersionInfo UCD_VERSION = Emoji.VERSION12;
```

The emoji version will be ≥ the UCD version.

**Results:**

:construction: **TODO**: Work with Mark on working replacements for "draft" URLs.
Expand Down
4 changes: 2 additions & 2 deletions unicodetools/src/main/java/org/unicode/tools/AacOrder.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@

public class AacOrder {

private static final VersionInfo VERSION = Emoji.VERSION15_1;
private static final VersionInfo UCD_VERSION = Emoji.VERSION15_1;
private static final VersionInfo VERSION = Emoji.VERSION_TO_GENERATE;
private static final VersionInfo UCD_VERSION = Emoji.VERSION_TO_GENERATE_UNICODE;

private static final CandidateData CANDIDATE_DATA = CandidateData.getInstance();

Expand Down
Loading