Skip to content

Commit

Permalink
Release v5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vdurmont committed Aug 14, 2019
1 parent e33c8df commit 59dff80
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## v5.0.0

- Fix the HTML to Unicode parser to always parse the longer emojis (thanks @freva)
- Add alias for "pumpkin" (thanks @sullis)
- Add a lot of missing flag emojis (thanks @ankitkariryaa)
- Support for all emojis from Unicode 11.0
- Support for all emojis from Unicode 10.0
- Add a `EmojiParser.replaceAllEmojis` function (thanks @cbedoy)

## v4.0.0

- Add "source code" strings to emoji json database
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
<dependency>
<groupId>com.vdurmont</groupId>
<artifactId>emoji-java</artifactId>
<version>4.0.0</version>
<version>5.0.0</version>
</dependency>
```

You can also download the project, build it with `mvn clean install` and add the generated jar to your buildpath.

##### Via Gradle:
```gradle
compile 'com.vdurmont:emoji-java:4.0.0'
compile 'com.vdurmont:emoji-java:5.0.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>4.0.0</version>
<version>5.0.0</version>
</dependency>
</dependencies>
</project>
4 changes: 2 additions & 2 deletions 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>4.0.0</version>
<version>5.0.0</version>
<packaging>jar</packaging>

<name>emoji-java</name>
Expand Down Expand Up @@ -127,7 +127,7 @@
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.4</version>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
Expand Down

0 comments on commit 59dff80

Please sign in to comment.