From 52389c9a7bdf65212e7fab2a452c87f849509d64 Mon Sep 17 00:00:00 2001 From: ChaseApptentive <85038972+ChaseApptentive@users.noreply.github.com> Date: Wed, 2 Aug 2023 15:13:12 -0400 Subject: [PATCH] Release 6.1.2 (#38) Release 6.1.2 --- CHANGELOG.md | 9 +++++++-- android/build.gradle | 2 +- ios/apptentive_flutter.podspec | 4 ++-- lib/apptentive_flutter.dart | 4 ++-- pubspec.yaml | 2 +- 5 files changed, 13 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a8be48..6626acc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,14 @@ -# 2022-04-27 - v6.1.1 +# 2023-08-02 - v6.1.2 + +- Apptentive Android SDK: 6.1.0 +- Apptentive iOS SDK: 6.2.2 + +# 2023-04-27 - v6.1.1 - Apptentive Android SDK: 6.0.4 - Apptentive iOS SDK: 6.2.0 -# 2022-04-18 - v6.1.0 +# 2023-04-18 - v6.1.0 - Apptentive Android SDK: 6.0.4 - Apptentive iOS SDK: 6.1.0 diff --git a/android/build.gradle b/android/build.gradle index 2378916..ffd8461 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -37,6 +37,6 @@ android { } dependencies { - implementation 'com.apptentive:apptentive-kit-android:6.0.5' + implementation 'com.apptentive:apptentive-kit-android:6.1.0' testImplementation 'junit:junit:4.13.2' } diff --git a/ios/apptentive_flutter.podspec b/ios/apptentive_flutter.podspec index e6f1846..fe0f411 100644 --- a/ios/apptentive_flutter.podspec +++ b/ios/apptentive_flutter.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'apptentive_flutter' - s.version = "6.1.1" + s.version = "6.1.2" s.summary = 'Apptentive SDK for Flutter' s.description = <<-DESC Apptentive SDK for Flutter @@ -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.2.0' + s.dependency 'ApptentiveKit', '~> 6.2.2' s.platform = :ios, '11.0' # Flutter.framework does not contain a i386 slice. diff --git a/lib/apptentive_flutter.dart b/lib/apptentive_flutter.dart index e09a916..a79a29d 100644 --- a/lib/apptentive_flutter.dart +++ b/lib/apptentive_flutter.dart @@ -21,7 +21,7 @@ class ApptentiveConfiguration { this.shouldEncryptStorage = false, this.shouldSanitizeLogMessages = true, this.distributionName = "Flutter", - this.distributionVersion = "6.1.0", + this.distributionVersion = "6.1.2", this.ratingInteractionThrottleLength = 604800000, // 1 week this.customAppStoreURL }); @@ -71,7 +71,7 @@ class ApptentiveFlutter { final bool registered = await _channel.invokeMethod('register', { "configuration" : _packConfiguration(configuration), "distributionName" : "Flutter", - "distributionVersion" : "6.1.1", + "distributionVersion" : "6.1.2", }); return registered; } diff --git a/pubspec.yaml b/pubspec.yaml index d9a732f..e9f9710 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: apptentive_flutter description: Apptentive SDK for Flutter -version: 6.1.1 +version: 6.1.2 repository: https://github.com/apptentive/apptentive-flutter issue_tracker: https://github.com/apptentive/apptentive-flutter/issues documentation: https://learn.apptentive.com/knowledge-base/apptentive-sdk-flutter-plugin-guide/