Skip to content

Commit 71910d7

Browse files
authored
Merge pull request #888 from Iterable/prepare-for-release-3.5.11
Prepare for Release 3.5.11
2 parents 9140d3d + ab80d48 commit 71910d7

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,17 @@ All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased]
6-
- Adding section for unreleased changes
6+
7+
## [3.5.11]
8+
9+
### Fixed
10+
- Fixed issue where text container shrinks when buttons are not present for the embedded OOTB views.
11+
- Fixed issue where crashes are occurring due to conflicts in deep link handling
12+
- Fixed data storage failures by adding plain text fallback when encryption fails.
13+
14+
### Added
15+
- Added support for providing a list of placement ids to sync only certain placement ids.
16+
- support for pre-release automation
717

818
## [3.5.10]
919

iterableapi-ui/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ dependencies {
5151

5252
ext {
5353
libraryName = 'iterableapi-ui'
54-
libraryVersion = '3.5.10'
54+
libraryVersion = '3.5.11'
5555
}
5656

5757
if (hasProperty("mavenPublishEnabled")) {

iterableapi/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ android {
1919
minSdkVersion 16
2020
targetSdkVersion 31
2121

22-
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.10\""
22+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.11\""
2323

2424
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2525
}
@@ -85,7 +85,7 @@ dependencies {
8585

8686
ext {
8787
libraryName = 'iterableapi'
88-
libraryVersion = '3.5.10'
88+
libraryVersion = '3.5.11'
8989
}
9090

9191
if (hasProperty("mavenPublishEnabled")) {

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

+2-2
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.5.10'
37-
implementation 'com.iterable:iterableapi-ui:3.5.10'
36+
implementation 'com.iterable:iterableapi:3.5.11'
37+
implementation 'com.iterable:iterableapi-ui:3.5.11'
3838
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'
3939

4040
testImplementation 'junit:junit:4.12'

0 commit comments

Comments
 (0)