diff --git a/CHANGELOG.md b/CHANGELOG.md index aaef522120..6e972311b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,13 @@ # Change Log -Version 0.16.0 *(In development)* ---------------------------------- +Version 0.16.0 *(2023-03-25)* +----------------------------- + +- Android: Target 33. [\#888](https://github.com/vanniktech/Emoji/pull/888) ([vanniktech](https://github.com/vanniktech)) +- Breaking: EmojiTheming constructor requires all colors to be set. New EmojiTheming.from\(Context\) to retrieve colors from your Activity/Fragment. [\#904](https://github.com/vanniktech/Emoji/pull/904) ([vanniktech](https://github.com/vanniktech)) +- Generate smaller Emoji Chunks classes to avoid MethodTooLargeException [\#884](https://github.com/vanniktech/Emoji/pull/884) ([bmarty](https://github.com/bmarty)) +- Technical: Use Android Source Set Layout Version 2. [\#962](https://github.com/vanniktech/Emoji/pull/962) ([vanniktech](https://github.com/vanniktech)) +- Theming: Fix Cursor color with Android Material 1.8.0 and later. [\#954](https://github.com/vanniktech/Emoji/pull/954) ([vanniktech](https://github.com/vanniktech)) Version 0.15.0 *(2022-05-28)* ----------------------------- diff --git a/README.md b/README.md index 30f88422b7..f1d0aec72f 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ The library has 4 different sprites providers to choose from ([iOS](#ios-emojis) For getting the above iOS Emojis, add the dependency: ```groovy -implementation "com.vanniktech:emoji-ios:0.15.0" +implementation "com.vanniktech:emoji-ios:0.16.0" ``` And install the provider in your Application class. @@ -45,7 +45,7 @@ EmojiManager.install(IosEmojiProvider()) For getting the above Google Emojis, add the dependency: ```groovy -implementation "com.vanniktech:emoji-google:0.15.0" +implementation "com.vanniktech:emoji-google:0.16.0" ``` And install the provider in your Application class. @@ -64,7 +64,7 @@ EmojiManager.install(GoogleEmojiProvider()) For getting the above Facebook Emojis, add the dependency: ```groovy -implementation "com.vanniktech:emoji-facebook:0.15.0" +implementation "com.vanniktech:emoji-facebook:0.16.0" ``` And install the provider in your Application class. @@ -83,7 +83,7 @@ EmojiManager.install(FacebookEmojiProvider()) For getting the above Twitter Emojis, add the dependency: ```groovy -implementation "com.vanniktech:emoji-twitter:0.15.0" +implementation "com.vanniktech:emoji-twitter:0.16.0" ``` And install the provider in your Application class. @@ -102,7 +102,7 @@ EmojiManager.install(TwitterEmojiProvider()) For getting the above Google Emojis, add the dependency (only works for Android Apps): ```groovy -implementation "com.vanniktech:emoji-google-compat:0.15.0" +implementation "com.vanniktech:emoji-google-compat:0.16.0" ``` And install the provider in your Application class. @@ -150,7 +150,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 providers: ```groovy -implementation "com.vanniktech:emoji:0.15.0" +implementation "com.vanniktech:emoji:0.16.0" ``` ## Android Material @@ -158,7 +158,7 @@ implementation "com.vanniktech:emoji:0.15.0" Material Design Library bindings can be included via: ```groovy -implementation "com.vanniktech:emoji-material:0.15.0" +implementation "com.vanniktech:emoji-material:0.16.0" ``` - [`EmojiMaterialButton`](emoji-material/src/main/java/com/vanniktech/emoji/material/EmojiMaterialButton.kt) diff --git a/gradle.properties b/gradle.properties index ce69ae5e3f..30569aff37 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.vanniktech -VERSION_NAME=0.16.0-SNAPSHOT +VERSION_NAME=0.16.0 POM_DESCRIPTION=A simple library to add Emoji support to your Android Application