diff --git a/CHANGELOG.md b/CHANGELOG.md index abdbe887..7b6692f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2.5.2 +* SKProduct issue fix +* Unfinished transactions fix +* Minor improvements + ## 2.5.1 * iOS 14.5 advertising ID support diff --git a/ios/qonversion_flutter.podspec b/ios/qonversion_flutter.podspec index 8ef85f97..80622d27 100644 --- a/ios/qonversion_flutter.podspec +++ b/ios/qonversion_flutter.podspec @@ -4,7 +4,7 @@ # Pod::Spec.new do |s| s.name = 'qonversion_flutter' - s.version = '2.4.2' + s.version = '2.4.3' s.summary = 'Flutter Qonversion SDK' s.description = <<-DESC Powerful yet simple subscription analytics @@ -16,7 +16,7 @@ Pod::Spec.new do |s| s.source_files = 'Classes/**/*' s.dependency 'Flutter' s.platform = :ios, '9.0' - s.dependency 'Qonversion', '2.13.2' + s.dependency 'Qonversion', '2.13.3' # 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/qonversion.dart b/lib/src/qonversion.dart index 5b844dbd..93da9efd 100644 --- a/lib/src/qonversion.dart +++ b/lib/src/qonversion.dart @@ -16,7 +16,7 @@ import 'models/purchase_exception.dart'; import 'qa_provider.dart'; class Qonversion { - static const String _sdkVersion = "2.5.1"; + static const String _sdkVersion = "2.5.2"; static const MethodChannel _channel = MethodChannel('qonversion_flutter_sdk'); static const _purchasesEventChannel = diff --git a/macos/qonversion_flutter.podspec b/macos/qonversion_flutter.podspec index 1a264875..bd166b7b 100644 --- a/macos/qonversion_flutter.podspec +++ b/macos/qonversion_flutter.podspec @@ -4,7 +4,7 @@ # Pod::Spec.new do |s| s.name = 'qonversion_flutter' - s.version = '1.0.1' + s.version = '1.0.2' s.summary = 'Flutter Qonversion SDK' s.description = <<-DESC Powerful yet simple subscription analytics @@ -16,7 +16,7 @@ Pod::Spec.new do |s| s.source_files = 'Classes/**/*' s.dependency 'FlutterMacOS' s.platform = :osx, '10.12' - s.dependency 'Qonversion', '2.13.2' + s.dependency 'Qonversion', '2.13.3' s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' } s.swift_version = '5.0' s.static_framework = true diff --git a/pubspec.yaml b/pubspec.yaml index 2b5fbff2..725b46c5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: qonversion_flutter description: In-App Subscription Infrastructure to grow your subscription business -version: 2.5.1 +version: 2.5.2 homepage: 'https://qonversion.io' repository: 'https://github.com/qonversion/flutter-sdk'