Skip to content

Commit

Permalink
Release v5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vdurmont committed Aug 27, 2019
1 parent f276dba commit eb73533
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 24 deletions.
45 changes: 25 additions & 20 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v5.1.0

- Many performance improvements to the parsing of the emojis (thanks @freva)
- Add a `containsEmoji` function (thanks @freva!)

## v5.0.0

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

## v2.1.0

* Add methods:
* `EmojiParser#removeAllEmojis(String)`
* `EmojiParser#removeAllEmojisExcept(String, Collection<Emoji>)`
* `EmojiParser#removeEmojis(String, Collection<Emoji>)`
* Upgrade dependency org.json:json
- Add methods:
- `EmojiParser#removeAllEmojis(String)`
- `EmojiParser#removeAllEmojisExcept(String, Collection<Emoji>)`
- `EmojiParser#removeEmojis(String, Collection<Emoji>)`
- Upgrade dependency org.json:json

## v2.0.1

Bug fix on the :-1: emoji

## v2.0.0

* Update of the emoji database
* Add 14 new family emojis (man_man_boy, woman_woman_girl, etc.)
* Add 4 new couple emojis
* Add the "vulcan_salute" and "middle_finger" emojis
* Add 198 flags
* Addition of the support for the diversity emojis (Fitzpatrick modifiers)
* Removal of the deprecated methods `Emoji#getHtml` and `EmojiParser#parseToHtml`
* Improvements in the javadoc
- Update of the emoji database
- Add 14 new family emojis (man_man_boy, woman_woman_girl, etc.)
- Add 4 new couple emojis
- Add the "vulcan_salute" and "middle_finger" emojis
- Add 198 flags
- Addition of the support for the diversity emojis (Fitzpatrick modifiers)
- Removal of the deprecated methods `Emoji#getHtml` and `EmojiParser#parseToHtml`
- Improvements in the javadoc

## v1.1.1

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

## v1.1.0

* Update of the emoji database
* Adding support for HTML hexadecimal:
* `Emoji#getHtmlHexadecimal`
* `EmojiParser#parseToHtmlHexadecimal`
* The old HTML support is now HTML decimal:
* Deprecating `Emoji#getHtml` (replaced by `Emoji#getHtmlDecimal`)
* Deprecating `EmojiParser#parseToHtml` (replaced by `EmojiParser#parseToHtmlDecimal`)
- Update of the emoji database
- Adding support for HTML hexadecimal:
- `Emoji#getHtmlHexadecimal`
- `EmojiParser#parseToHtmlHexadecimal`
- The old HTML support is now HTML decimal:
- Deprecating `Emoji#getHtml` (replaced by `Emoji#getHtmlDecimal`)
- Deprecating `EmojiParser#parseToHtml` (replaced by `EmojiParser#parseToHtmlDecimal`)

## v1.0.1

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ _The missing emoji library for java._
<dependency>
<groupId>com.vdurmont</groupId>
<artifactId>emoji-java</artifactId>
<version>5.0.0</version>
<version>5.1.0</version>
</dependency>
```

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

```gradle
compile 'com.vdurmont:emoji-java:5.0.0'
compile 'com.vdurmont:emoji-java:5.1.0'
```

##### Via Direct Download:
Expand Down
2 changes: 1 addition & 1 deletion emoji-table-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<dependency>
<groupId>com.vdurmont</groupId>
<artifactId>emoji-java</artifactId>
<version>5.0.0</version>
<version>5.1.0</version>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.vdurmont</groupId>
<artifactId>emoji-java</artifactId>
<version>5.0.0</version>
<version>5.1.0</version>
<packaging>jar</packaging>

<name>emoji-java</name>
Expand Down

0 comments on commit eb73533

Please sign in to comment.