diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fbbebc5ae..010a1a7c79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,19 @@ # Change Log -Version 0.11.0 *(In development)* ---------------------------------- +Version 0.11.0 *(2022-05-11)* +----------------------------- + +- Mark almost all resources as private. [\#783](https://github.com/vanniktech/Emoji/pull/783) ([vanniktech](https://github.com/vanniktech)) +- Translate category names into German. [\#782](https://github.com/vanniktech/Emoji/pull/782) ([vanniktech](https://github.com/vanniktech)) +- Stricter android resource prefixes. [\#781](https://github.com/vanniktech/Emoji/pull/781) ([vanniktech](https://github.com/vanniktech)) +- EmojiRange: Replace start & end with IntRange. [\#779](https://github.com/vanniktech/Emoji/pull/779) ([vanniktech](https://github.com/vanniktech)) +- EmojiPopup: Hide EmojiResultReceiver.Receiver usage. [\#778](https://github.com/vanniktech/Emoji/pull/778) ([vanniktech](https://github.com/vanniktech)) +- EmojiReplacer interface is now a fun interface. [\#777](https://github.com/vanniktech/Emoji/pull/777) ([vanniktech](https://github.com/vanniktech)) +- Ignore whitespace when using force single emoji & searching for an Emoji. [\#776](https://github.com/vanniktech/Emoji/pull/776) ([vanniktech](https://github.com/vanniktech)) +- EditText\#input gets addWhitespace parameter. [\#775](https://github.com/vanniktech/Emoji/pull/775) ([vanniktech](https://github.com/vanniktech)) +- Use Emojis name when calling extension functions from Java. [\#774](https://github.com/vanniktech/Emoji/pull/774) ([vanniktech](https://github.com/vanniktech)) +- Remove deprecated methods. [\#773](https://github.com/vanniktech/Emoji/pull/773) ([vanniktech](https://github.com/vanniktech)) +- Add metalava. [\#680](https://github.com/vanniktech/Emoji/pull/680) ([vanniktech](https://github.com/vanniktech)) Version 0.10.0 *(2022-05-11)* ----------------------------- diff --git a/README.md b/README.md index 46ffac44a2..6dd0d7e064 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ There's also a [`EmojiLayoutFactory`](emoji/src/main/java/com/vanniktech/emoji/E Material Design Library bindings can be included via: ```groovy -implementation "com.vanniktech:emoji-material:0.10.0" +implementation "com.vanniktech:emoji-material:0.11.0" ``` - [`EmojiMaterialButton`](emoji-material/src/main/java/com/vanniktech/emoji/material/EmojiMaterialButton.kt) @@ -33,7 +33,7 @@ The library has 4 different providers to choose from ([iOS](#ios-emojis), [Googl For getting the above iOS Emojis simply add the dependency and code below. ```groovy -implementation "com.vanniktech:emoji-ios:0.10.0" +implementation "com.vanniktech:emoji-ios:0.11.0" ``` And install the provider in your application class. @@ -49,7 +49,7 @@ EmojiManager.install(IosEmojiProvider()); For getting the above Google Emojis simply add the dependency and code below. ```groovy -implementation "com.vanniktech:emoji-google:0.10.0" +implementation "com.vanniktech:emoji-google:0.11.0" ``` And install the provider in your application class. @@ -65,7 +65,7 @@ EmojiManager.install(GoogleEmojiProvider()); For getting the above Facebook Emojis simply add the dependency and code below. ```groovy -implementation "com.vanniktech:emoji-facebook:0.10.0" +implementation "com.vanniktech:emoji-facebook:0.11.0" ``` And install the provider in your application class. @@ -81,7 +81,7 @@ EmojiManager.install(FacebookEmojiProvider()); For getting the above Twitter Emojis simply add the dependency and code below. ```groovy -implementation "com.vanniktech:emoji-twitter:0.10.0" +implementation "com.vanniktech:emoji-twitter:0.11.0" ``` And install the provider in your application class. @@ -97,7 +97,7 @@ If you want to display your own Emojis you can create your own implementation of All of the core API lays in `emoji`, which is being pulled in automatically by the provided implementations: ```groovy -implementation "com.vanniktech:emoji:0.10.0" +implementation "com.vanniktech:emoji:0.11.0" ``` ## Set up diff --git a/gradle.properties b/gradle.properties index fcf4459d8b..7e1e80dd8f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.vanniktech -VERSION_NAME=0.11.0-SNAPSHOT +VERSION_NAME=0.11.0 POM_DESCRIPTION=A simple library to add Emoji support to your Android Application