Skip to content

Commit 127e3b1

Browse files
authored
Merge pull request #218 from Iterable/MOB-1325-Release-Android-SDK-3.2.1
Prepare for 3.2.1
2 parents 44ecc0d + 87debd0 commit 127e3b1

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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.2.1](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.2.1)
19+
#### Added
20+
- Added support for new parameters - `subscribedMessageTypeIDs`, `campaignId`, `templateId` in `updateSubscriptions` method.
21+
1822
## [3.2.0](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.2.0)
1923
#### Added
2024
- **[Mobile Inbox](https://github.com/Iterable/iterable-android-sdk/blob/master/README.md#mobile-inbox)**

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ tokens.
4242

4343
Add the following dependencies to your application's **build.gradle**:
4444

45-
- `implementation 'com.iterable:iterableapi:3.2.0'`
46-
- `implementation 'com.iterable:iterableapi-ui:3.2.0' // Optional, contains Inbox UI components`
45+
- `implementation 'com.iterable:iterableapi:3.2.1'`
46+
- `implementation 'com.iterable:iterableapi-ui:3.2.1' // Optional, contains Inbox UI components`
4747
- `implementation 'com.google.firebase:firebase-messaging:X.X.X' // Min version 17.4.0`
4848

4949
See [Bintray](https://bintray.com/davidtruong/maven/Iterable-SDK) for the latest

iterableapi-ui/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ ext {
5252
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
5353
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'
5454

55-
libraryVersion = '3.2.0'
55+
libraryVersion = '3.2.1'
5656

5757
developerId = 'davidtruong'
5858
developerName = 'David Truong'

iterableapi/build.gradle

Lines changed: 2 additions & 2 deletions
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.2.0\""
12+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.2.1\""
1313

1414
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1515
}
@@ -70,7 +70,7 @@ ext {
7070
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
7171
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'
7272

73-
libraryVersion = '3.2.0'
73+
libraryVersion = '3.2.1'
7474

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

sample-apps/inbox-customization/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ dependencies {
3333
implementation 'androidx.navigation:navigation-ui-ktx:2.1.0'
3434
implementation 'com.google.android.material:material:1.1.0'
3535

36-
implementation 'com.iterable:iterableapi:3.2.0'
37-
implementation 'com.iterable:iterableapi-ui:3.2.0'
36+
implementation 'com.iterable:iterableapi:3.2.1'
37+
implementation 'com.iterable:iterableapi-ui:3.2.1'
3838
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'
3939

4040
testImplementation 'junit:junit:4.12'

0 commit comments

Comments
 (0)