diff --git a/CHANGELOG.md b/CHANGELOG.md index 884bb70..fa66315 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 7.1.0 +* Added remote configuration source property. +* Added rate limits for API calls. + ## 7.0.1 * Fixed a small bug with setting `advertisingId` property on Android. diff --git a/android/build.gradle b/android/build.gradle index 3765df8..71cef92 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -43,6 +43,6 @@ android { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" - implementation "io.qonversion.sandwich:sandwich:3.1.0" + implementation "io.qonversion.sandwich:sandwich:3.1.1" implementation 'com.google.code.gson:gson:2.9.0' } diff --git a/ios/qonversion_flutter.podspec b/ios/qonversion_flutter.podspec index 7cdc36c..666711e 100644 --- a/ios/qonversion_flutter.podspec +++ b/ios/qonversion_flutter.podspec @@ -16,7 +16,7 @@ Pod::Spec.new do |s| s.source_files = 'Classes/**/*' s.dependency 'Flutter' s.platform = :ios, '9.0' - s.dependency "QonversionSandwich", "3.1.0" + s.dependency "QonversionSandwich", "3.1.1" # Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported. s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' } diff --git a/lib/src/internal/qonversion_internal.dart b/lib/src/internal/qonversion_internal.dart index 79d93ad..4218c41 100644 --- a/lib/src/internal/qonversion_internal.dart +++ b/lib/src/internal/qonversion_internal.dart @@ -11,7 +11,7 @@ import 'package:qonversion_flutter/src/internal/utils/string.dart'; import 'constants.dart'; class QonversionInternal implements Qonversion { - static const String _sdkVersion = "7.0.1"; + static const String _sdkVersion = "7.1.0"; final MethodChannel _channel = MethodChannel('qonversion_plugin'); diff --git a/macos/qonversion_flutter.podspec b/macos/qonversion_flutter.podspec index 7885fd3..fd70f60 100644 --- a/macos/qonversion_flutter.podspec +++ b/macos/qonversion_flutter.podspec @@ -16,7 +16,7 @@ Pod::Spec.new do |s| s.source_files = 'Classes/**/*' s.dependency 'FlutterMacOS' s.platform = :osx, '10.12' - s.dependency "QonversionSandwich", "3.1.0" + s.dependency "QonversionSandwich", "3.1.1" s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' } s.swift_version = '5.0' diff --git a/pubspec.yaml b/pubspec.yaml index d2ee987..c18daab 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: qonversion_flutter description: Flutter plugin to implement in-app subscriptions and purchases. Validate user receipts and manage cross-platform access to paid content on your app. Android & iOS. -version: 7.0.1 +version: 7.1.0 homepage: 'https://qonversion.io' repository: 'https://github.com/qonversion/flutter-sdk'