Skip to content

Commit

Permalink
Prepare for 3.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
vbabenkoru committed Mar 8, 2019
1 parent 2cf5eef commit 6ff3500
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
6 changes: 3 additions & 3 deletions iterableapi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down Expand Up @@ -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'
Expand Down

0 comments on commit 6ff3500

Please sign in to comment.