diff --git a/CHANGELOG.md b/CHANGELOG.md index a67f3d29..22a3c2a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 3.1.0 +* Add support for promo purchases on iOS +* Add Identity support + ## 3.0.1 * Fix QOfferings mapping error * Internal logic optimization for Android diff --git a/android/build.gradle b/android/build.gradle index 5d8eeb79..c817fd32 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,5 +1,5 @@ group 'com.qonversion.flutter.sdk.qonversion_flutter_sdk' -version '3.0.1' +version '3.1.0' buildscript { ext.kotlin_version = '1.3.50' diff --git a/ios/qonversion_flutter.podspec b/ios/qonversion_flutter.podspec index 7cd55afe..a94bc398 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 = '3.0.1' + s.version = '3.1.0' s.summary = 'Flutter Qonversion SDK' s.description = <<-DESC Powerful yet simple subscription analytics diff --git a/lib/src/qonversion.dart b/lib/src/qonversion.dart index f70ce7f5..befea8c7 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 = "3.0.1"; + static const String _sdkVersion = "3.1.0"; static const MethodChannel _channel = MethodChannel('qonversion_flutter_sdk'); diff --git a/macos/qonversion_flutter.podspec b/macos/qonversion_flutter.podspec index 56cc5fc5..7d491b7b 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 = '2.0.1' + s.version = '2.1.0' s.summary = 'Flutter Qonversion SDK' s.description = <<-DESC Powerful yet simple subscription analytics diff --git a/pubspec.yaml b/pubspec.yaml index a463cfe7..3e63bc50 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: 3.0.1 +version: 3.1.0 homepage: 'https://qonversion.io' repository: 'https://github.com/qonversion/flutter-sdk'