Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,20 @@ 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

### Added
- Added plain text fallback for data storage when encryption fails.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should move to fixed section

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

### Removed
- Removed Beta SDK disclaimer from the readme
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not public facing

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isnt this in the readme though? I can remove it from the change log


## [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