Skip to content

Commit eb73533

Browse files
committed
Release v5.1.0
1 parent f276dba commit eb73533

File tree

4 files changed

+29
-24
lines changed

4 files changed

+29
-24
lines changed

CHANGELOG.md

Lines changed: 25 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v5.1.0
4+
5+
- Many performance improvements to the parsing of the emojis (thanks @freva)
6+
- Add a `containsEmoji` function (thanks @freva!)
7+
38
## v5.0.0
49

510
- Fix the HTML to Unicode parser to always parse the longer emojis (thanks @freva)
@@ -69,40 +74,40 @@ Rollback dependency org.json:json to 20140107 to keep the compatibility with Jav
6974

7075
## v2.1.0
7176

72-
* Add methods:
73-
* `EmojiParser#removeAllEmojis(String)`
74-
* `EmojiParser#removeAllEmojisExcept(String, Collection<Emoji>)`
75-
* `EmojiParser#removeEmojis(String, Collection<Emoji>)`
76-
* Upgrade dependency org.json:json
77+
- Add methods:
78+
- `EmojiParser#removeAllEmojis(String)`
79+
- `EmojiParser#removeAllEmojisExcept(String, Collection<Emoji>)`
80+
- `EmojiParser#removeEmojis(String, Collection<Emoji>)`
81+
- Upgrade dependency org.json:json
7782

7883
## v2.0.1
7984

8085
Bug fix on the :-1: emoji
8186

8287
## v2.0.0
8388

84-
* Update of the emoji database
85-
* Add 14 new family emojis (man_man_boy, woman_woman_girl, etc.)
86-
* Add 4 new couple emojis
87-
* Add the "vulcan_salute" and "middle_finger" emojis
88-
* Add 198 flags
89-
* Addition of the support for the diversity emojis (Fitzpatrick modifiers)
90-
* Removal of the deprecated methods `Emoji#getHtml` and `EmojiParser#parseToHtml`
91-
* Improvements in the javadoc
89+
- Update of the emoji database
90+
- Add 14 new family emojis (man_man_boy, woman_woman_girl, etc.)
91+
- Add 4 new couple emojis
92+
- Add the "vulcan_salute" and "middle_finger" emojis
93+
- Add 198 flags
94+
- Addition of the support for the diversity emojis (Fitzpatrick modifiers)
95+
- Removal of the deprecated methods `Emoji#getHtml` and `EmojiParser#parseToHtml`
96+
- Improvements in the javadoc
9297

9398
## v1.1.1
9499

95100
Closing the stream used to read the emoji database in `EmojiManager.java`
96101

97102
## v1.1.0
98103

99-
* Update of the emoji database
100-
* Adding support for HTML hexadecimal:
101-
* `Emoji#getHtmlHexadecimal`
102-
* `EmojiParser#parseToHtmlHexadecimal`
103-
* The old HTML support is now HTML decimal:
104-
* Deprecating `Emoji#getHtml` (replaced by `Emoji#getHtmlDecimal`)
105-
* Deprecating `EmojiParser#parseToHtml` (replaced by `EmojiParser#parseToHtmlDecimal`)
104+
- Update of the emoji database
105+
- Adding support for HTML hexadecimal:
106+
- `Emoji#getHtmlHexadecimal`
107+
- `EmojiParser#parseToHtmlHexadecimal`
108+
- The old HTML support is now HTML decimal:
109+
- Deprecating `Emoji#getHtml` (replaced by `Emoji#getHtmlDecimal`)
110+
- Deprecating `EmojiParser#parseToHtml` (replaced by `EmojiParser#parseToHtmlDecimal`)
106111

107112
## v1.0.1
108113

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ _The missing emoji library for java._
1616
<dependency>
1717
<groupId>com.vdurmont</groupId>
1818
<artifactId>emoji-java</artifactId>
19-
<version>5.0.0</version>
19+
<version>5.1.0</version>
2020
</dependency>
2121
```
2222

@@ -25,7 +25,7 @@ You can also download the project, build it with `mvn clean install` and add the
2525
##### Via Gradle:
2626

2727
```gradle
28-
compile 'com.vdurmont:emoji-java:5.0.0'
28+
compile 'com.vdurmont:emoji-java:5.1.0'
2929
```
3030

3131
##### Via Direct Download:

emoji-table-generator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<dependency>
1919
<groupId>com.vdurmont</groupId>
2020
<artifactId>emoji-java</artifactId>
21-
<version>5.0.0</version>
21+
<version>5.1.0</version>
2222
</dependency>
2323
</dependencies>
2424
</project>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.vdurmont</groupId>
66
<artifactId>emoji-java</artifactId>
7-
<version>5.0.0</version>
7+
<version>5.1.0</version>
88
<packaging>jar</packaging>
99

1010
<name>emoji-java</name>

0 commit comments

Comments
 (0)