Skip to content

Commit

Permalink
Prepare version 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vanniktech committed Apr 9, 2022
1 parent 702209e commit a411844
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 12 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Change Log

Version 0.9.0 *(In development)*
--------------------------------
Version 0.9.0 *(2022-04-09)*
----------------------------

- Fix Memory Leak with setOnApplyWindowInsetsListener. [\#569](https://github.com/vanniktech/Emoji/pull/569) ([vanniktech](https://github.com/vanniktech))
- Keep file to keep sheets which are accessed through reflection. [\#562](https://github.com/vanniktech/Emoji/pull/562) ([vanniktech](https://github.com/vanniktech))
- Update dependencies. [\#561](https://github.com/vanniktech/Emoji/pull/561) ([vanniktech](https://github.com/vanniktech))

Version 0.8.0 *(2021-09-27)*
----------------------------
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.0"
implementation "com.vanniktech:emoji-material:0.9.0"
```

- [`EmojiMaterialButton`](emoji-material/src/main/java/com/vanniktech/emoji/material/EmojiMaterialButton.java)
Expand All @@ -32,7 +32,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.8.0"
implementation "com.vanniktech:emoji-ios:0.9.0"
```

And install the provider in your application class.
Expand All @@ -48,7 +48,7 @@ EmojiManager.install(new IosEmojiProvider());
For getting the above Google Emojis simply add the dependency and code below.

```groovy
implementation "com.vanniktech:emoji-google:0.8.0"
implementation "com.vanniktech:emoji-google:0.9.0"
```

And install the provider in your application class.
Expand All @@ -64,7 +64,7 @@ EmojiManager.install(new GoogleEmojiProvider());
For getting the above Facebook Emojis simply add the dependency and code below.

```groovy
implementation "com.vanniktech:emoji-facebook:0.8.0"
implementation "com.vanniktech:emoji-facebook:0.9.0"
```

And install the provider in your application class.
Expand All @@ -80,7 +80,7 @@ EmojiManager.install(new FacebookEmojiProvider());
For getting the above Twitter Emojis simply add the dependency and code below.

```groovy
implementation "com.vanniktech:emoji-twitter:0.8.0"
implementation "com.vanniktech:emoji-twitter:0.9.0"
```

And install the provider in your application class.
Expand All @@ -96,7 +96,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.8.0"
implementation "com.vanniktech:emoji:0.9.0"
```

## Set up
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ android {
applicationId "com.vanniktech.emoji.sample"
minSdkVersion rootProject.ext.minSdkVersion as int
targetSdkVersion rootProject.ext.targetSdkVersion as int
versionCode rootProject.ext.versionCode as int
versionCode 10
versionName rootProject.ext.versionName as String

vectorDrawables.useSupportLibrary = true
Expand Down
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ ext {
compileSdkVersion = 31
targetSdkVersion = 31

versionCode = VERSION_CODE
versionName = VERSION_NAME

testing = [
Expand Down
3 changes: 1 addition & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
GROUP=com.vanniktech
VERSION_NAME=0.9.0-SNAPSHOT
VERSION_CODE=9
VERSION_NAME=0.9.0

POM_DESCRIPTION=A simple library to add Emoji support to your Android Application

Expand Down

0 comments on commit a411844

Please sign in to comment.