Skip to content
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ JSON datasets, regex patterns, and more.

#### Features

- Supports the latest [Emoji 16](https://emojipedia.org/emoji-16.0/),
[Unicode 16](http://unicode.org/versions/Unicode16.0.0/), and
[CLDR 46](http://cldr.unicode.org/index/downloads/cldr-46) release versions
- Supports the latest [Emoji 17](https://emojipedia.org/emoji-17.0/),
[Unicode 17](http://unicode.org/versions/Unicode17.0.0/), and
[CLDR 48](http://cldr.unicode.org/index/downloads/cldr-48) 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/)
- With localization provided by
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
"@moonrepo/dev": "^3.0.2",
"@types/jest": "^29.5.14",
"babel-preset-moon": "^3.0.3",
"cldr-annotations-derived-full": "^46.0.0",
"cldr-annotations-full": "^46.0.0",
"cldr-localenames-full": "^46.0.0",
"cldr-misc-full": "^46.0.0",
"cldr-annotations-derived-full": "^48.0.0",
"cldr-annotations-full": "^48.0.0",
"cldr-localenames-full": "^48.0.0",
"cldr-misc-full": "^48.0.0",
"eslint": "^8.57.1",
"eslint-config-moon": "^3.1.2",
"fast-glob": "^3.3.2",
Expand Down
6 changes: 3 additions & 3 deletions packages/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ JSON datasets, regex patterns, and more.

#### Features

- Supports the latest [Emoji 16](https://emojipedia.org/emoji-16.0/),
[Unicode 16](http://unicode.org/versions/Unicode16.0.0/), and
[CLDR 46](http://cldr.unicode.org/index/downloads/cldr-46) release versions
- Supports the latest [Emoji 17](https://emojipedia.org/emoji-17.0/),
[Unicode 17](http://unicode.org/versions/Unicode17.0.0/), and
[CLDR 48](http://cldr.unicode.org/index/downloads/cldr-48) 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/)
- With localization provided by
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 = '16.0';
export const LATEST_UNICODE_VERSION = '16.0.0';
export const LATEST_CLDR_VERSION = '46';
export const LATEST_EMOJI_VERSION = '17.0';
export const LATEST_UNICODE_VERSION = '17.0.0';
export const LATEST_CLDR_VERSION = '48';

export const FIRST_UNICODE_EMOJI_VERSION = '6.0.0';
export const EMOJI_VERSIONS = [
Expand All @@ -68,6 +68,7 @@ export const EMOJI_VERSIONS = [
'15.0',
'15.1',
'16.0',
'17.0',
];
export const UNICODE_VERSIONS = [
'6.0',
Expand All @@ -86,6 +87,7 @@ export const UNICODE_VERSIONS = [
'15.0',
'15.1',
'16.0',
'17.0',
];

export const SUPPORTED_LOCALES: Locale[] = [
Expand Down
Loading
Loading