diff --git a/CHANGELOG.md b/CHANGELOG.md index bc094fd2d..3e01e2cfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,15 @@ This project adheres to [Semantic Versioning](http://semver.org/). #### Changed - nothing yet +## [3.5.2] +#### Added + - Introducing a new method `setAuthRetryPolicy` in `IterableConfig` to set the retry policy for JWT token refresh. + - You can now use method - `pauseAuthRetries(boolean pauseRetry)` to pause or resume the JWT token refresh retries. + - `trackPurchase` method now accepts `attributionInfo` parameter to track purchase with attribution information. + +#### Fixed +- Embedded manager listeners are active only if feature is enabled + ## [3.5.1] #### Fixed diff --git a/iterableapi-ui/build.gradle b/iterableapi-ui/build.gradle index 302a0594f..0f8197f5c 100644 --- a/iterableapi-ui/build.gradle +++ b/iterableapi-ui/build.gradle @@ -51,7 +51,7 @@ dependencies { ext { libraryName = 'iterableapi-ui' - libraryVersion = '3.5.1' + libraryVersion = '3.5.2' } if (hasProperty("mavenPublishEnabled")) { diff --git a/iterableapi/build.gradle b/iterableapi/build.gradle index 4849a2d7a..49c9fa489 100644 --- a/iterableapi/build.gradle +++ b/iterableapi/build.gradle @@ -19,7 +19,7 @@ android { minSdkVersion 16 targetSdkVersion 27 - buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.1\"" + buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.2\"" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } @@ -85,7 +85,7 @@ dependencies { ext { libraryName = 'iterableapi' - libraryVersion = '3.5.1' + libraryVersion = '3.5.2' } if (hasProperty("mavenPublishEnabled")) { diff --git a/sample-apps/inbox-customization/app/build.gradle b/sample-apps/inbox-customization/app/build.gradle index 04cecd7e0..06895408e 100644 --- a/sample-apps/inbox-customization/app/build.gradle +++ b/sample-apps/inbox-customization/app/build.gradle @@ -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.1' - implementation 'com.iterable:iterableapi-ui:3.5.1' + implementation 'com.iterable:iterableapi:3.5.2' + implementation 'com.iterable:iterableapi-ui:3.5.2' implementation 'com.squareup.okhttp3:mockwebserver:4.2.2' testImplementation 'junit:junit:4.12'