Skip to content

Commit

Permalink
Release version 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vdurmont committed Jan 6, 2016
1 parent eea68d0 commit 8017d1d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

## v2.1.0
## v2.2.1

Fix the `htmlDec` and `htmlHex` codes for the multiple emojis (such as `family (man, man, girl, boy)`)

## v2.2.0

Rollback dependency org.json:json to 20140107 to keep the compatibility with Java 6 & 7

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014-2015 Vincent DURMONT <vdurmont@gmail.com>
Copyright (c) 2014-present Vincent DURMONT <vdurmont@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,22 @@
<dependency>
<groupId>com.vdurmont</groupId>
<artifactId>emoji-java</artifactId>
<version>2.2.0</version>
<version>2.2.1</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:2.2.0'
compile 'com.vdurmont:emoji-java:2.2.1'
```

## How to use it?

### EmojiManager

The `EmojiManager` provides several static methods to search throught the emojis database:
The `EmojiManager` provides several static methods to search through the emojis database:

* `getForTag` returns all the emojis for a given tag
* `getForAlias` returns the emoji for an alias
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>2.2.0</version>
<version>2.2.1</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>2.2.0</version>
<version>2.2.1</version>
<packaging>jar</packaging>

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

0 comments on commit 8017d1d

Please sign in to comment.