Skip to content

Commit cc8159b

Browse files
authored
Release 8.4.1
Release 8.4.1
2 parents bb05786 + 0608f80 commit cc8159b

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 8.4.1
2+
* Fixed the issue with the `QRemoteConfigurationSource` parsing.
3+
14
## 8.4.0
25
* Added returning promise to the `identify` method. You may see warnings for ignoring the returned promise after updating to this version until you update the usage to asynchronous. If you don't need to know the identification result, simply ignore it.
36

lib/src/dto/remote_configuration_source.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class QRemoteConfigurationSource {
2727
final QRemoteConfigurationAssignmentType assignmentType;
2828

2929
@JsonKey(name: 'contextKey')
30-
final String contextKey;
30+
final String? contextKey;
3131

3232
const QRemoteConfigurationSource(
3333
this.id,

lib/src/dto/remote_configuration_source.g.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/src/internal/qonversion_internal.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import 'package:qonversion_flutter/src/internal/utils/string.dart';
1111
import 'constants.dart';
1212

1313
class QonversionInternal implements Qonversion {
14-
static const String _sdkVersion = "8.4.0";
14+
static const String _sdkVersion = "8.4.1";
1515

1616
final MethodChannel _channel = MethodChannel('qonversion_plugin');
1717

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: qonversion_flutter
22
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.
3-
version: 8.4.0
3+
version: 8.4.1
44
homepage: 'https://qonversion.io'
55
repository: 'https://github.com/qonversion/flutter-sdk'
66

0 commit comments

Comments
 (0)