diff --git a/CHANGELOG.md b/CHANGELOG.md index 1497296..1f0857b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 9.2.1 +* Fixed update policy issue for purchase with options. + ## 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. diff --git a/lib/src/internal/qonversion_internal.dart b/lib/src/internal/qonversion_internal.dart index d213ff9..dd2f93f 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.2.0"; + static const String _sdkVersion = "9.2.1"; final MethodChannel _channel = MethodChannel('qonversion_plugin'); diff --git a/pubspec.yaml b/pubspec.yaml index 638b8c8..c7c6d73 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.2.0 +version: 9.2.1 homepage: 'https://qonversion.io' repository: 'https://github.com/qonversion/flutter-sdk'