Skip to content

Commit 99dfb6c

Browse files
committed
Prepare for 3.0.5
1 parent f9afd4b commit 99dfb6c

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,17 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1515
#### Fixed
1616
- nothing yet
1717

18+
## [3.0.5](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.0.5)
19+
#### Added
20+
- Added a new field to `IterableConfig` - `logLevel` - to specify the log level for Iterable SDK log messages
21+
22+
#### Changed
23+
- The SDK now uses `preferUserId` flag to create a user by userId instead of the deprecated `createUserForUserId` API
24+
25+
#### Fixed
26+
- The SDK now catches any RuntimeExceptions that may sometimes happen when calling `getAdvertisingIdInfo`
27+
- `registerDeviceToken` and `disableToken` now use the email/userId that was set at the time of the call, to handle login/logout correctly
28+
1829
## [3.0.4](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.0.4)
1930
#### Added
2031
- Added support for user registration with userId. The SDK will now create a new user for userId if it does not exist before registering the device on the user's profile.

README.md

Lines changed: 1 addition & 1 deletion
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.0'
33+
compile 'com.iterable:iterableapi:3.0.5'
3434
compile 'com.google.firebase:firebase-messaging:X.X.X' // Min version 9.0.0
3535
```
3636

iterableapi/build.gradle

Lines changed: 3 additions & 3 deletions
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.4"
12+
versionName "3.0.5"
1313

14-
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.0.4\""
14+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.0.5\""
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.4'
74+
libraryVersion = '3.0.5'
7575

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

0 commit comments

Comments
 (0)