Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,17 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
- Adding section for unreleased changes

## [3.5.11]

### Fixed
- Fixed issue where text container shrinks when buttons are not present for the embedded OOTB views.
- Fixed issue where crashes are occurring due to conflicts in deep link handling
- Fixed data storage failures by adding plain text fallback when encryption fails.

### Added
- Added support for providing a list of placement ids to sync only certain placement ids.
- support for pre-release automation

## [3.5.10]

Expand Down
2 changes: 1 addition & 1 deletion iterableapi-ui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dependencies {

ext {
libraryName = 'iterableapi-ui'
libraryVersion = '3.5.10'
libraryVersion = '3.5.11'
}

if (hasProperty("mavenPublishEnabled")) {
Expand Down
4 changes: 2 additions & 2 deletions iterableapi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ android {
minSdkVersion 16
targetSdkVersion 31

buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.10\""
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.11\""

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down Expand Up @@ -85,7 +85,7 @@ dependencies {

ext {
libraryName = 'iterableapi'
libraryVersion = '3.5.10'
libraryVersion = '3.5.11'
}

if (hasProperty("mavenPublishEnabled")) {
Expand Down
4 changes: 2 additions & 2 deletions sample-apps/inbox-customization/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ dependencies {
implementation 'androidx.navigation:navigation-ui-ktx:2.1.0'
implementation 'com.google.android.material:material:1.1.0'

implementation 'com.iterable:iterableapi:3.5.10'
implementation 'com.iterable:iterableapi-ui:3.5.10'
implementation 'com.iterable:iterableapi:3.5.11'
implementation 'com.iterable:iterableapi-ui:3.5.11'
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'

testImplementation 'junit:junit:4.12'
Expand Down
Loading