Skip to content

Commit

Permalink
fix: Fix some incorrect emoticons.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Mar 21, 2020
1 parent f6de9c0 commit a39d1a8
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 4.0.0 - 2020-02-13
# 4.0.0 - 2020-03-13

#### 🎉 Release

Expand Down
9 changes: 8 additions & 1 deletion packages/data/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# 5.0.0 - 2020-02-13
## 5.0.1 - 2020-03-21

#### 🐞 Fixes

- Fixed `:)` and `<3` emoticons not rendering correctly.
- Updated `:D` emoticon to 😀.

# 5.0.0 - 2020-03-13

#### 🎉 Release

Expand Down
10 changes: 5 additions & 5 deletions packages/generator/src/resources/emoticons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ export default {
// HAPPY
// 🙂 slightly smiling face
'1F642': ':)',
// 😁 grinning face with smiling eyes
'1F601': ':D',
// 😀 grinning face
'1F600': ':D',
// 😊 smiling face with smiling eyes
'1F60A': ':>',
// 😉 winking face
Expand Down Expand Up @@ -79,8 +79,8 @@ export default {
'1F910': ':z',

// SAD
// ☹️ frowning face
'2639': ':(',
// 🙁 frowning face
'2639-FEOF': ':(',
// 😧 anguished face
'1F627': ':s',
// 😖 confounded face
Expand Down Expand Up @@ -132,7 +132,7 @@ export default {

// SYMBOLS
// ❤️ red heart
'2764': '<3',
'2764-FE0F': '<3',
// 💔 broken heart
'1F494': '</3',
// 🤘 sign of the horns
Expand Down
9 changes: 8 additions & 1 deletion packages/regex/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# 4.0.0 - 2020-02-13
## 4.0.1 - 2020-03-21

#### 🐞 Fixes

- Fixed `:)` and `<3` emoticons not rendering correctly.
- Updated `:D` emoticon to 😀.

# 4.0.0 - 2020-03-13

#### 🎉 Release

Expand Down

0 comments on commit a39d1a8

Please sign in to comment.