Skip to content

Commit 7f71bbb

Browse files
committed
Prepare for 3.0.6
1 parent bff1ce9 commit 7f71bbb

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1515
#### Fixed
1616
- nothing yet
1717

18+
## [3.0.6](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.0.6)
19+
#### Added
20+
- Added public methods to `IterableFirebaseMessagingService` and `IterableFirebaseInstanceIDService` that can be called from a custom `FirebaseMessagingService` subclass
21+
1822
## [3.0.5](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.0.5)
1923
#### Added
2024
- Added a new field to `IterableConfig` - `logLevel` - to specify the log level for Iterable SDK log messages

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Congratulations, you've configured your mobile application to receive push notif
3030
Add the following dependencies to your application's `build.gradle`:
3131

3232
```groovy
33-
compile 'com.iterable:iterableapi:3.0.5'
33+
compile 'com.iterable:iterableapi:3.0.6'
3434
compile 'com.google.firebase:firebase-messaging:X.X.X' // Min version 9.0.0
3535
```
3636

iterableapi/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ android {
99
minSdkVersion 15
1010
targetSdkVersion 27
1111
versionCode 1
12-
versionName "3.0.5"
12+
versionName "3.0.6"
1313

14-
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.0.5\""
14+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.0.6\""
1515

1616
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1717
}
@@ -71,7 +71,7 @@ ext {
7171
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
7272
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'
7373

74-
libraryVersion = '3.0.5'
74+
libraryVersion = '3.0.6'
7575

7676
developerId = 'davidtruong'
7777
developerName = 'David Truong'

0 commit comments

Comments
 (0)