diff --git a/Documentation/release-notes.md b/Documentation/release-notes.md index f59753c..e5486b8 100644 --- a/Documentation/release-notes.md +++ b/Documentation/release-notes.md @@ -10,6 +10,21 @@ parentDocSlug: flutter-sdk > > Refer to the [SDK version update guide](https://documentation.bloomreach.com/engagement/docs/flutter-sdk-version-update) for details on updating from version 0.x.x to 1.x.x. +## Release Notes +## Release Notes for 2.0.0 +#### December 13, 2024 +* Added: + * Updates native Android SDK to version 4.0.1. + * Updates native iOS SDK to version 3.0.1. + * Updates the default session timeout to 60 seconds. + * Adds a manualSessionAutoClose configuration parameter to override automatic session end tracking for open sessions when sessionStart is called multiple times. + * Adds compatibility with Android Gradle Plugin 8. + * Adds identification of Cancel button clicks in in-app message close events and inclusion of the button label in the tracked event. + * Adds minor documentation improvements. +* Fixed: + * Fixes an issue on iOS where an empty App Inbox caused click events to be passed to the underlying app. + * Fixes an issue where, in certain scenarios, the app would crash while parsing Recommendations . + ## Release Notes ## Release Notes for 1.7.0 #### August 07, 2024 diff --git a/android/build.gradle b/android/build.gradle index e7c9b25..d957cae 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,5 +1,5 @@ group 'com.exponea' -version '1.7.0-SNAPSHOT' +version '2.0.0-SNAPSHOT' buildscript { ext { diff --git a/android/src/main/AndroidManifest.xml b/android/src/main/AndroidManifest.xml index 6d140f2..58dc760 100644 --- a/android/src/main/AndroidManifest.xml +++ b/android/src/main/AndroidManifest.xml @@ -4,7 +4,7 @@ - + String { - "1.7.0" + "2.0.0" } } diff --git a/pubspec.yaml b/pubspec.yaml index c0bd54f..004e57e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: exponea description: >- A full featured wrapper for Exponea SDK that supports Android and iOS. -version: 1.7.0 +version: 2.0.0 homepage: https://exponea.com repository: https://github.com/exponea/exponea-flutter-sdk