Skip to content

Commit

Permalink
Prepare version 0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vanniktech committed Jun 27, 2023
1 parent 2828ab4 commit 724ec29
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 17 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Change Log

Version 0.17.0 *(In development)*
---------------------------------
Version 0.17.0 *(2023-06-27)*
-----------------------------

- Support Emoji Version 15.0 [\#991](https://github.com/vanniktech/Emoji/pull/991) ([vanniktech](https://github.com/vanniktech))
- Gradle: Set Jvm Toolchain to 11. [\#990](https://github.com/vanniktech/Emoji/pull/990) ([vanniktech](https://github.com/vanniktech))

Version 0.16.0 *(2023-03-25)*
-----------------------------
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.16.0"
implementation "com.vanniktech:emoji-ios:0.17.0"
```

And install the provider in your Application class.
Expand All @@ -45,7 +45,7 @@ EmojiManager.install(IosEmojiProvider())
For getting the above Google Emojis, add the dependency:

```groovy
implementation "com.vanniktech:emoji-google:0.16.0"
implementation "com.vanniktech:emoji-google:0.17.0"
```

And install the provider in your Application class.
Expand All @@ -64,7 +64,7 @@ EmojiManager.install(GoogleEmojiProvider())
For getting the above Facebook Emojis, add the dependency:

```groovy
implementation "com.vanniktech:emoji-facebook:0.16.0"
implementation "com.vanniktech:emoji-facebook:0.17.0"
```

And install the provider in your Application class.
Expand All @@ -83,7 +83,7 @@ EmojiManager.install(FacebookEmojiProvider())
For getting the above Twitter Emojis, add the dependency:

```groovy
implementation "com.vanniktech:emoji-twitter:0.16.0"
implementation "com.vanniktech:emoji-twitter:0.17.0"
```

And install the provider in your Application class.
Expand All @@ -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.16.0"
implementation "com.vanniktech:emoji-google-compat:0.17.0"
```

And install the provider in your Application class.
Expand Down Expand Up @@ -150,15 +150,15 @@ 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.16.0"
implementation "com.vanniktech:emoji:0.17.0"
```

## Android Material

Material Design Library bindings can be included via:

```groovy
implementation "com.vanniktech:emoji-material:0.16.0"
implementation "com.vanniktech:emoji-material:0.17.0"
```

- [`EmojiMaterialButton`](./emoji-material/src/androidMain/kotlin/com/vanniktech/emoji/material/mojiMaterialButton.kt)
Expand Down
2 changes: 1 addition & 1 deletion emoji-facebook/emoji_facebook.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'emoji_facebook'
spec.version = '0.16.0-SNAPSHOT'
spec.version = '0.17.0'
spec.homepage = ''
spec.source = { :http=> ''}
spec.authors = ''
Expand Down
2 changes: 1 addition & 1 deletion emoji-google-compat/emoji_google_compat.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'emoji_google_compat'
spec.version = '0.16.0-SNAPSHOT'
spec.version = '0.17.0'
spec.homepage = ''
spec.source = { :http=> ''}
spec.authors = ''
Expand Down
2 changes: 1 addition & 1 deletion emoji-google/emoji_google.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'emoji_google'
spec.version = '0.16.0-SNAPSHOT'
spec.version = '0.17.0'
spec.homepage = ''
spec.source = { :http=> ''}
spec.authors = ''
Expand Down
2 changes: 1 addition & 1 deletion emoji-ios/emoji_ios.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'emoji_ios'
spec.version = '0.16.0-SNAPSHOT'
spec.version = '0.17.0'
spec.homepage = ''
spec.source = { :http=> ''}
spec.authors = ''
Expand Down
2 changes: 1 addition & 1 deletion emoji-material/emoji_material.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'emoji_material'
spec.version = '0.16.0-SNAPSHOT'
spec.version = '0.17.0'
spec.homepage = ''
spec.source = { :http=> ''}
spec.authors = ''
Expand Down
2 changes: 1 addition & 1 deletion emoji-twitter/emoji_twitter.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'emoji_twitter'
spec.version = '0.16.0-SNAPSHOT'
spec.version = '0.17.0'
spec.homepage = ''
spec.source = { :http=> ''}
spec.authors = ''
Expand Down
2 changes: 1 addition & 1 deletion emoji/emoji.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'emoji'
spec.version = '0.16.0-SNAPSHOT'
spec.version = '0.17.0'
spec.homepage = ''
spec.source = { :http=> ''}
spec.authors = ''
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.vanniktech
VERSION_NAME=0.17.0-SNAPSHOT
VERSION_NAME=0.17.0

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

Expand Down

0 comments on commit 724ec29

Please sign in to comment.