Release 1.2.2

This commit is contained in:
jenkins-mobile 2023-09-29 11:29:08 +03:00
parent 2b1d7f8d86
commit 63e918e79a
3 changed files with 7 additions and 3 deletions

View File

@ -5,6 +5,10 @@
### NEXT_VERSION_DESCRIPTION_BEGIN
### NEXT_VERSION_DESCRIPTION_END
## [1.2.2] (29-09-2023)
* Fix unnecessary_non_null_assertion warnings in test
## [1.2.1] (28-09-2023)
* Add parameters for deploying to pub.dev

View File

@ -1,7 +1,7 @@
name: yookassa_payments_flutter
description: This Flutter SDK allows processing payments using a payment token. It
works as an addition to the YooMoney API.
version: 1.2.1
version: 1.2.2
homepage: https://git.yoomoney.ru/projects/SDK/repos/yookassa-payments-flutter-sdk/browse
repository: https://git.yoomoney.ru/projects/SDK/repos/yookassa-payments-flutter-sdk/browse
environment:

View File

@ -7,12 +7,12 @@ void main() {
TestWidgetsFlutterBinding.ensureInitialized();
setUp(() {
TestDefaultBinaryMessengerBinding.instance!.defaultBinaryMessenger
TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger
.setMockMethodCallHandler(channel, (methodInvocation) => null);
});
tearDown(() {
TestDefaultBinaryMessengerBinding.instance!.defaultBinaryMessenger
TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger
.setMockMethodCallHandler(channel, (methodInvocation) => null);
});
}