From 4f1a6c932a3c2c929cf20ed5d6283b7affe9f494 Mon Sep 17 00:00:00 2001 From: Niklas Baudy Date: Mon, 11 Dec 2023 11:03:32 -0300 Subject: [PATCH] Prepare version 0.18.0 --- CHANGELOG.md | 9 +++++++-- README.md | 14 +++++++------- gradle.properties | 2 +- 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 577bd9b8ce..ef95e2b543 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,12 @@ # Change Log -Version 0.18.0 *(In development)* ---------------------------------- +Version 0.18.0 *(2023-12-11)* +----------------------------- + +- Behavior change: SearchEmojiManager sorts by found index and then by shortcode. [\#1041](https://github.com/vanniktech/Emoji/pull/1041) ([vanniktech](https://github.com/vanniktech)) +- Breaking change: Emoji is no longer Parcelable. [\#1043](https://github.com/vanniktech/Emoji/pull/1043) ([vanniktech](https://github.com/vanniktech)) +- Bug fix: Correctly use stable ids in EmojiAdapter to prevent showing the same Emoji multiple times. [\#1040](https://github.com/vanniktech/Emoji/pull/1040) ([vanniktech](https://github.com/vanniktech)) +- Technical: Kotlin 1.9.21 & Target Android 34. [\#1044](https://github.com/vanniktech/Emoji/pull/1044) ([vanniktech](https://github.com/vanniktech)) Version 0.17.0 *(2023-06-27)* ----------------------------- diff --git a/README.md b/README.md index 71e9e9211c..6d564855c9 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.18.0-SNAPSHOT") +implementation("com.vanniktech:emoji-ios:0.18.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.18.0-SNAPSHOT") +implementation("com.vanniktech:emoji-google:0.18.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.18.0-SNAPSHOT") +implementation("com.vanniktech:emoji-facebook:0.18.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.18.0-SNAPSHOT") +implementation("com.vanniktech:emoji-twitter:0.18.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.18.0-SNAPSHOT") +implementation("com.vanniktech:emoji-google-compat:0.18.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.18.0-SNAPSHOT") +implementation("com.vanniktech:emoji:0.18.0") ``` ## Android Material @@ -158,7 +158,7 @@ implementation("com.vanniktech:emoji:0.18.0-SNAPSHOT") Material Design Library bindings can be included via: ```groovy -implementation("com.vanniktech:emoji-material:0.18.0-SNAPSHOT") +implementation("com.vanniktech:emoji-material:0.18.0") ``` - [`EmojiMaterialButton`](./emoji-material/src/androidMain/kotlin/com/vanniktech/emoji/material/mojiMaterialButton.kt) diff --git a/gradle.properties b/gradle.properties index f33fb8e39e..0d33832e0f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.vanniktech -VERSION_NAME=0.18.0-SNAPSHOT +VERSION_NAME=0.18.0 POM_DESCRIPTION=A simple library to add Emoji support to your Android Application