Skip to content

Commit

Permalink
Merge pull request #58 from headius/update_config
Browse files Browse the repository at this point in the history
Update unicode and emoji version
  • Loading branch information
headius committed Mar 29, 2022
2 parents 7032435 + f2f590d commit e573151
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/org/jcodings/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ public interface Config {
final int ENC_CASE_FOLD_MIN = INTERNAL_ENC_CASE_FOLD_MULTI_CHAR;
final int ENC_CASE_FOLD_DEFAULT = ENC_CASE_FOLD_MIN;

final String UNICODE_VERSION_STRING = "12.1.0";
final int UNICODE_VERSION_MAJOR = 12;
final int UNICODE_VERSION_MINOR = 1;
final String UNICODE_VERSION_STRING = "13.0.0";
final int UNICODE_VERSION_MAJOR = 13;
final int UNICODE_VERSION_MINOR = 0;
final int UNICODE_VERSION_TEENY = 0;
final String UNICODE_EMOJI_VERSION_STRING = "12.0";
final int UNICODE_EMOJI_VERSION_MAJOR = 12;
final int UNICODE_EMOJI_VERSION_MINOR = 0;
final String UNICODE_EMOJI_VERSION_STRING = "13.1";
final int UNICODE_EMOJI_VERSION_MAJOR = 13;
final int UNICODE_EMOJI_VERSION_MINOR = 1;

}

0 comments on commit e573151

Please sign in to comment.