diff --git a/CHANGELOG.md b/CHANGELOG.md index 00ec0839e..1432536b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] + +## [3.7.0] - Replaced the deprecated `AsyncTask`-based push notification handling with `WorkManager` for improved reliability and compatibility with modern Android versions. No action is required. - Fixed lost event tracking and missed API calls with an auto-retry feature for JWT token failures. - Added `onEmbeddedMessagingSyncSucceeded()` and `onEmbeddedMessagingSyncFailed()` callbacks to `IterableEmbeddedUpdateHandler` for monitoring embedded message sync results. diff --git a/iterableapi-ui/build.gradle b/iterableapi-ui/build.gradle index e2c99ba10..77e6bb3eb 100644 --- a/iterableapi-ui/build.gradle +++ b/iterableapi-ui/build.gradle @@ -61,7 +61,7 @@ dependencies { ext { libraryName = 'iterableapi-ui' - libraryVersion = '3.6.6' + libraryVersion = '3.7.0' } if (hasProperty("mavenPublishEnabled")) { diff --git a/iterableapi/build.gradle b/iterableapi/build.gradle index 2a629690a..f186dc9f6 100644 --- a/iterableapi/build.gradle +++ b/iterableapi/build.gradle @@ -21,7 +21,7 @@ android { minSdkVersion 21 targetSdkVersion 34 - buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.6.6\"" + buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.7.0\"" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } @@ -91,7 +91,7 @@ dependencies { ext { libraryName = 'iterableapi' - libraryVersion = '3.6.6' + libraryVersion = '3.7.0' } if (hasProperty("mavenPublishEnabled")) {