Skip to content

Commit

Permalink
Release 6.1.2 (#38)
Browse files Browse the repository at this point in the history
Release 6.1.2
  • Loading branch information
ChaseApptentive committed Aug 2, 2023
1 parent f33eb13 commit 52389c9
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
9 changes: 7 additions & 2 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Expand Up @@ -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'
}
4 changes: 2 additions & 2 deletions 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
Expand All @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions lib/apptentive_flutter.dart
Expand Up @@ -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
});
Expand Down Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion 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/
Expand Down

0 comments on commit 52389c9

Please sign in to comment.