File tree Expand file tree Collapse file tree 7 files changed +2380
-2215
lines changed
Expand file tree Collapse file tree 7 files changed +2380
-2215
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ iterate over all emoji.
1818- Iterate over emojis in an emoji group, e.g. “Smileys & Emotion” or “Flags”
1919- Iterate over the skin tones for an emoji
2020- Select a specific skin tone for an emoji
21- - Uses [ Unicode v16 .0] ( https://unicode.org/emoji/charts-16 .0/emoji-released.html ) emoji specification
21+ - Uses [ Unicode v17 .0] ( https://unicode.org/emoji/charts-17 .0/emoji-released.html ) emoji specification
2222
2323## Getting started
2424
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ use serde::Serialize;
1414pub use crate :: unicode:: data:: Group ;
1515use crate :: unicode:: data:: Status ;
1616
17- pub const VERSION_MAJOR : & str = "16 " ;
17+ pub const VERSION_MAJOR : & str = "17 " ;
1818pub const VERSION_MINOR : & str = "0" ;
1919pub const VERSION_PATCH : & str = "0" ;
2020
Original file line number Diff line number Diff line change @@ -7,15 +7,17 @@ use anyhow::Result;
77use constcat:: concat;
88use serde:: Serialize ;
99
10- use crate :: unicode:: { VERSION_MAJOR , VERSION_MINOR } ;
10+ use crate :: unicode:: { VERSION_MAJOR , VERSION_MINOR , VERSION_PATCH } ;
1111use crate :: util;
1212
1313const URL : & str = concat ! (
14- "https://unicode.org/Public/emoji/ " ,
14+ "https://unicode.org/Public/" ,
1515 VERSION_MAJOR ,
1616 "." ,
1717 VERSION_MINOR ,
18- "/emoji-test.txt"
18+ "." ,
19+ VERSION_PATCH ,
20+ "/emoji/emoji-test.txt"
1921) ;
2022
2123/// A single entry in the file.
Load Diff Large diffs are not rendered by default.
Load Diff Large diffs are not rendered by default.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1010//! - Iterate over emojis in an emoji group, e.g. "Smileys & Emotion" or "Flags"
1111//! - Iterate over the skin tones for an emoji
1212//! - Select a specific skin tone for an emoji
13- //! - Uses [Unicode v16 .0](https://unicode.org/emoji/charts-16 .0/emoji-released.html) emoji specification
13+ //! - Uses [Unicode v17 .0](https://unicode.org/emoji/charts-17 .0/emoji-released.html) emoji specification
1414//!
1515//! [gemoji]: https://github.com/github/gemoji
1616//!
You can’t perform that action at this time.
0 commit comments