Skip to content

Commit

Permalink
new: Support Emoji v15.1. (#164)
Browse files Browse the repository at this point in the history
* Generate.

* Update files.

* Update files.

* Polish.
  • Loading branch information
milesj committed Dec 2, 2023
1 parent 5e76d53 commit b2e0ec6
Show file tree
Hide file tree
Showing 131 changed files with 295,885 additions and 209,407 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ JSON datasets, regex patterns, and more.

#### Features

- Supports the latest [Emoji 15](https://emojipedia.org/emoji-15.0/),
[Unicode 15](http://unicode.org/versions/Unicode15.0.0/), and
[CLDR 43](http://cldr.unicode.org/index/downloads/cldr-43) release versions
- Supports the latest [Emoji 15.1](https://emojipedia.org/emoji-15.1/),
[Unicode 15.1](http://unicode.org/versions/Unicode15.1.0/), and
[CLDR 44](http://cldr.unicode.org/index/downloads/cldr-44) release versions
- Built directly from the [emoji data source files](http://unicode.org/Public/emoji/)
- Based on the official [Unicode Technical Standard #51](http://unicode.org/reports/tr51/) (rev 19)
- Based on the official [Unicode Technical Standard #51](http://unicode.org/reports/tr51/)
- With localization provided by
[Unicode Technical Standard #35](http://unicode.org/reports/tr35/tr35-general.html#Annotations)

Expand Down
8 changes: 4 additions & 4 deletions packages/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ JSON datasets, regex patterns, and more.

#### Features

- Supports the latest [Emoji 15](https://emojipedia.org/emoji-15.0/),
[Unicode 15](http://unicode.org/versions/Unicode15.0.0/), and
[CLDR 43](http://cldr.unicode.org/index/downloads/cldr-43) release versions
- Supports the latest [Emoji 15.1](https://emojipedia.org/emoji-15.1/),
[Unicode 15.1](http://unicode.org/versions/Unicode15.1.0/), and
[CLDR 44](http://cldr.unicode.org/index/downloads/cldr-44) release versions
- Built directly from the [emoji data source files](http://unicode.org/Public/emoji/)
- Based on the official [Unicode Technical Standard #51](http://unicode.org/reports/tr51/) (rev 19)
- Based on the official [Unicode Technical Standard #51](http://unicode.org/reports/tr51/)
- With localization provided by
[Unicode Technical Standard #35](http://unicode.org/reports/tr35/tr35-general.html#Annotations)

Expand Down
8 changes: 5 additions & 3 deletions packages/core/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ export const SKIN_KEY_DARK: SkinToneKey = 'dark';

// Important release versions and locales in generating accurate data.

export const LATEST_EMOJI_VERSION = '15.0';
export const LATEST_UNICODE_VERSION = '15.0.0';
export const LATEST_CLDR_VERSION = '43';
export const LATEST_EMOJI_VERSION = '15.1';
export const LATEST_UNICODE_VERSION = '15.1.0';
export const LATEST_CLDR_VERSION = '44';

export const FIRST_UNICODE_EMOJI_VERSION = '6.0.0';
export const EMOJI_VERSIONS = [
Expand All @@ -66,6 +66,7 @@ export const EMOJI_VERSIONS = [
'13.1',
'14.0',
'15.0',
'15.1',
];
export const UNICODE_VERSIONS = [
'6.0',
Expand All @@ -82,6 +83,7 @@ export const UNICODE_VERSIONS = [
'13.0',
'14.0',
'15.0',
'15.1',
];

export const SUPPORTED_LOCALES: Locale[] = [
Expand Down

0 comments on commit b2e0ec6

Please sign in to comment.