diff --git a/CHANGELOG.md b/CHANGELOG.md index 93511a1..1497296 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 9.2.0 +* iOS promotional offers supported. For the details see the [documentation](https://documentation.qonversion.io/docs/apple-promotional-offers). +* Minimal supported Dart SDK version is bumped to 2.14.0. + ## 9.1.5 * Attempt to fix crash and race conditions in the User Properties manager. * Fixed popover presentation style for iPad @@ -18,8 +22,8 @@ * iOS error codes improved ## 9.1.0 -* Added option to set context keys, quantity and other options for purchases. Context keys will allow you to associate the purchase with remote configuration if the product info was loaded from there. -* Deprecated old purchase functions. Use new one instead. +* Added option to set context keys, quantity, and other options for purchases. Context keys will allow you to associate the purchase with remote configuration if the product info was loaded from there. +* Deprecated old purchase functions. Use the new one instead. ## 9.0.2 * Fixed bug with `checkEntitlements` calls on Android when the callback might not have been called after subscription state changes during the app session. diff --git a/lib/src/internal/qonversion_internal.dart b/lib/src/internal/qonversion_internal.dart index d671623..3c8e75a 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 = "9.1.5"; + static const String _sdkVersion = "9.2.0"; final MethodChannel _channel = MethodChannel('qonversion_plugin'); diff --git a/pubspec.yaml b/pubspec.yaml index fedf767..638b8c8 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: 9.1.5 +version: 9.2.0 homepage: 'https://qonversion.io' repository: 'https://github.com/qonversion/flutter-sdk'