Skip to content

Commit be9f5fe

Browse files
authored
Merge pull request #418 from qonversion/release/11.0.0
2 parents 8d31cc5 + 698cb7f commit be9f5fe

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 11.0.0
2+
* No-Codes are now stable! This release brings lots of crucial features:
3+
* [No-Code screens preloading](https://documentation.qonversion.io/update/docs/screens-preloading#/) support,
4+
* [Fallback files](https://documentation.qonversion.io/update/docs/fallbacks#/) support,
5+
* Skeleton loading support for both platforms,
6+
* Proxy URL support for No-Code requests.
7+
* Custom `QonversionException` added for all the Qonversion and No-Codes calls.
8+
* Upgraded Google Billing version to 8.1.0
9+
110
## 10.0.3
211
* Fixed `Purchase` action type for No-Codes event on Android.
312

fastlane/Fastfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
def update_dart(new_version)
22
path = Dir['../lib/**/qonversion_internal.dart'].first
3-
regex = /static const String _sdkVersion = ".*";/
4-
result_value = "static const String _sdkVersion = \"#{new_version}\";"
3+
regex = /static const String sdkVersion = ".*";/
4+
result_value = "static const String sdkVersion = \"#{new_version}\";"
55

66
update_file(path, regex, result_value)
77
end

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 = "10.0.2";
14+
static const String sdkVersion = "11.0.0";
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: 10.0.3
3+
version: 11.0.0
44
homepage: 'https://qonversion.io'
55
repository: 'https://github.com/qonversion/flutter-sdk'
66

0 commit comments

Comments
 (0)