Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2.5.2
* SKProduct issue fix
* Unfinished transactions fix
* Minor improvements

## 2.5.1
* iOS 14.5 advertising ID support

Expand Down
4 changes: 2 additions & 2 deletions ios/qonversion_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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' }
Expand Down
2 changes: 1 addition & 1 deletion lib/src/qonversion.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down
4 changes: 2 additions & 2 deletions macos/qonversion_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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'

Expand Down