diff --git a/CHANGELOG.md b/CHANGELOG.md index ec6a7493..31b8f9e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 3.4.0 +* New Product fields: storeTitle, storeDescription, price, currencyCode, prettyIntroductoryPrice. +* Improved errors details. + ## 3.3.1 * Improved Android requests logic during the background and foreground app states. diff --git a/android/build.gradle b/android/build.gradle index 89b0296b..1d7ad635 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,5 +1,5 @@ group 'com.qonversion.flutter.sdk.qonversion_flutter_sdk' -version '3.3.1' +version '3.4.0' buildscript { ext.kotlin_version = '1.3.50' diff --git a/ios/qonversion_flutter.podspec b/ios/qonversion_flutter.podspec index 9b2042fe..ca09ca67 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.2.0' + s.version = '3.3.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 53dc4393..9d59c67e 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.3.1"; + static const String _sdkVersion = "3.4.0"; static const MethodChannel _channel = MethodChannel('qonversion_flutter_sdk'); diff --git a/macos/qonversion_flutter.podspec b/macos/qonversion_flutter.podspec index 548c7f25..191c486d 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.2.0' + s.version = '2.3.0' s.summary = 'Flutter Qonversion SDK' s.description = <<-DESC Powerful yet simple subscription analytics diff --git a/pubspec.yaml b/pubspec.yaml index 475e1e01..2d5bd12a 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: 3.3.1 +version: 3.4.0 homepage: 'https://qonversion.io' repository: 'https://github.com/qonversion/flutter-sdk'