From 5f92a4bfed7aba4d4ab4b0d957ca7945af816eab Mon Sep 17 00:00:00 2001 From: Victor Babenko Date: Wed, 10 Jul 2019 16:00:17 -0700 Subject: [PATCH] Prepare for 3.1.2 --- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- iterableapi/build.gradle | 4 ++-- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a2becbe26..db646919c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,13 @@ This project adheres to [Semantic Versioning](http://semver.org/). #### Fixed - nothing yet +## [3.1.2](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.1.2) +#### Changed +- Removed FirebaseInstanceIDService dependency to support newer versions of `firebase-messaging` library. This bumps the minimum required version of `firebase-messaging` to 17.4.0. + +#### Fixed +- Fixed deserialization of in-app messages stored with beta versions of the SDK + ## [3.1.1](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.1.1) #### Added - SDK platform and version is now sent with every API request via headers diff --git a/README.md b/README.md index 6861bb71f..4b6734889 100644 --- a/README.md +++ b/README.md @@ -30,8 +30,8 @@ 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.1.1' -compile 'com.google.firebase:firebase-messaging:X.X.X' // Min version 9.0.0 +compile 'com.iterable:iterableapi:3.1.2' +compile 'com.google.firebase:firebase-messaging:X.X.X' // Min version 17.4.0 ``` See [Bintray](https://bintray.com/davidtruong/maven/Iterable-SDK) for the latest version of the Iterable Android SDK. diff --git a/iterableapi/build.gradle b/iterableapi/build.gradle index 9c1225dc8..a8fed75f3 100644 --- a/iterableapi/build.gradle +++ b/iterableapi/build.gradle @@ -9,7 +9,7 @@ android { minSdkVersion 15 targetSdkVersion 27 - buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.1.1\"" + buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.1.2\"" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } @@ -66,7 +66,7 @@ ext { siteUrl = 'https://github.com/Iterable/iterable-android-sdk' gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git' - libraryVersion = '3.1.1' + libraryVersion = '3.1.2' developerId = 'davidtruong' developerName = 'David Truong'