diff --git a/CHANGELOG.md b/CHANGELOG.md index e01390ec4..155d230c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,18 @@ This project adheres to [Semantic Versioning](http://semver.org/). #### Fixed - nothing yet +## [3.0.8](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.0.8) +#### Added +- Added an option to specify notification channel name via manifest metadata (`iterable_notification_channel_name`) +- Added support for color resource references in `iterable_notification_color` manifest metadata parameter + +#### Changed +- `updateEmail` can now be used if the user is identified with userId +- Connection timeout is now 3 seconds + +#### Fixed +- Fixed a NullPointerException when the app has a plain-text label in `AndroidManifest.xml` instead of a string resource reference + ## [3.0.7](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.0.7) #### Added - Added `updateEmail` method with success & failure callbacks diff --git a/README.md b/README.md index a4ec7326d..22dcebbe8 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Congratulations, you've configured your mobile application to receive push notif Add the following dependencies to your application's `build.gradle`: ```groovy -compile 'com.iterable:iterableapi:3.0.7' +compile 'com.iterable:iterableapi:3.0.8' compile 'com.google.firebase:firebase-messaging:X.X.X' // Min version 9.0.0 ``` diff --git a/iterableapi/build.gradle b/iterableapi/build.gradle index b60f359fd..19c4fa9ce 100644 --- a/iterableapi/build.gradle +++ b/iterableapi/build.gradle @@ -9,9 +9,9 @@ android { minSdkVersion 15 targetSdkVersion 27 versionCode 1 - versionName "3.0.7" + versionName "3.0.8" - buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.0.7\"" + buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.0.8\"" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } @@ -71,7 +71,7 @@ ext { siteUrl = 'https://github.com/Iterable/iterable-android-sdk' gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git' - libraryVersion = '3.0.7' + libraryVersion = '3.0.8' developerId = 'davidtruong' developerName = 'David Truong'