Skip to content

Commit c558433

Browse files
committed
Prepare for 3.1.1
1 parent 8beee56 commit c558433

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

+11
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.1.1](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.1.1)
19+
#### Added
20+
- SDK platform and version is now sent with every API request via headers
21+
22+
#### Changed
23+
- `Api-Key` header name is now used for the API key instead of `api_key`, for consistency with HTTP header naming conventions
24+
25+
#### Fixed
26+
- Fixed an issue that could cause the SDK not to persist in-app message properties (processed/consumed)
27+
- Fixed a NullPointerException that could occur in IterableActivityMonitor if it was initialized after application start
28+
1829
## [3.1.0](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.1.0)
1930

2031
#### Added

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.1.0'
33+
compile 'com.iterable:iterableapi:3.1.1'
3434
compile 'com.google.firebase:firebase-messaging:X.X.X' // Min version 9.0.0
3535
```
3636

iterableapi/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ android {
99
minSdkVersion 15
1010
targetSdkVersion 27
1111

12-
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.1.0\""
12+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.1.1\""
1313

1414
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1515
}
@@ -66,7 +66,7 @@ ext {
6666
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
6767
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'
6868

69-
libraryVersion = '3.1.0'
69+
libraryVersion = '3.1.1'
7070

7171
developerId = 'davidtruong'
7272
developerName = 'David Truong'

0 commit comments

Comments
 (0)