diff --git a/CHANGELOG.md b/CHANGELOG.md index 79128d0..107fa9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 7.0.0 +* New `userProperties` method to get all the properties set for the current user. +* Renamings of several entities and public methods to make our namings and structure clearer. + ## 6.1.2 * Android 14 support. diff --git a/lib/src/internal/qonversion_internal.dart b/lib/src/internal/qonversion_internal.dart index 5f2dd2c..3ff854f 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 = "6.1.2"; + static const String _sdkVersion = "7.0.0"; final MethodChannel _channel = MethodChannel('qonversion_plugin'); diff --git a/pubspec.yaml b/pubspec.yaml index d69249c..1048725 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: 6.1.2 +version: 7.0.0 homepage: 'https://qonversion.io' repository: 'https://github.com/qonversion/flutter-sdk'