From 9561af26c0eeaa939c2c86d54758c20d483e7656 Mon Sep 17 00:00:00 2001 From: frankus Date: Wed, 2 Oct 2024 16:34:05 +0000 Subject: [PATCH 1/2] Update for 6.9.0 --- .scripts/changes.md | 4 ++-- CHANGELOG.md | 5 +++++ ios/apptentive_flutter.podspec | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.scripts/changes.md b/.scripts/changes.md index f617539..c086074 100644 --- a/.scripts/changes.md +++ b/.scripts/changes.md @@ -1,2 +1,2 @@ -- Apptentive Android SDK: 6.8.0 -- Apptentive iOS SDK: 6.8.1 +- Apptentive Android SDK: 6.9.0 +- Apptentive iOS SDK: 6.9.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 21d5613..74746f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 2024-10-02 - v6.9.0 + +- Apptentive Android SDK: 6.9.0 +- Apptentive iOS SDK: 6.9.0 + # 2024-06-26 - v6.8.0 - Apptentive Android SDK: 6.8.0 diff --git a/ios/apptentive_flutter.podspec b/ios/apptentive_flutter.podspec index c493a92..189154a 100644 --- a/ios/apptentive_flutter.podspec +++ b/ios/apptentive_flutter.podspec @@ -12,7 +12,7 @@ Apptentive SDK for Flutter s.source_files = 'Classes/**/*' s.public_header_files = 'Classes/**/*.h' s.dependency 'Flutter' - s.dependency 'ApptentiveKit', '6.8.1' + s.dependency 'ApptentiveKit', '6.9.0' s.platform = :ios, '13.0' # Flutter.framework does not contain a i386 slice. From 0d5c698058e5b8c41fb7e13f57eadca89e63c466 Mon Sep 17 00:00:00 2001 From: Frank Schmitt Date: Thu, 3 Oct 2024 10:48:54 -0700 Subject: [PATCH 2/2] Fix distribution version --- lib/apptentive_flutter.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/apptentive_flutter.dart b/lib/apptentive_flutter.dart index a0f2769..521b685 100644 --- a/lib/apptentive_flutter.dart +++ b/lib/apptentive_flutter.dart @@ -77,7 +77,7 @@ class ApptentiveFlutter { final bool registered = await _channel.invokeMethod('register', { "configuration" : _packConfiguration(configuration), "distributionName" : "Flutter", - "distributionVersion" : "6.1.2", + "distributionVersion" : configuration.distributionVersion, }); return registered; }