Skip to content

Commit 27e2a8d

Browse files
committed
WMRUSTORE-38: Update dependencies
1 parent ad503d6 commit 27e2a8d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

mindbox/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: mindbox
22
description: Flutter Mindbox SDK. Plugin wrapper over of Mindbox iOS/Android SDK.
3-
version: 2.11.0
3+
version: 2.13.0
44
homepage: https://mindbox.cloud/
55
repository: https://github.com/mindbox-cloud/flutter-sdk/tree/master/mindbox
66
documentation: https://developers.mindbox.ru/docs/flutter-sdk-integration

mindbox/test/mindbox_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ void main() {
6464
test('When SDK was initialized, getToken() should return token', () async {
6565
final completer = Completer<String>();
6666

67-
Mindbox.instance.getToken((deviceToken) => completer.complete(deviceToken));
67+
Mindbox.instance.getTokens((deviceToken) => completer.complete(deviceToken));
6868

6969
final validConfig = Configuration(
7070
domain: 'domain',
@@ -81,7 +81,7 @@ void main() {
8181
() async {
8282
final completer = Completer<String>();
8383

84-
Mindbox.instance.getToken((deviceToken) => completer.complete(deviceToken));
84+
Mindbox.instance.getTokens((deviceToken) => completer.complete(deviceToken));
8585

8686
expect(completer.isCompleted, isFalse);
8787
});

mindbox_android/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: mindbox_android
22
description: The implementation of 'mindbox' plugin for the Android platform.
3-
version: 2.11.0
3+
version: 2.13.0
44
homepage: https://mindbox.cloud/
55
repository: https://github.com/mindbox-cloud/flutter-sdk/tree/master/mindbox_android
66

mindbox_ios/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: mindbox_ios
22
description: The implementation of 'mindbox' plugin for the iOS platform.
3-
version: 2.11.0
3+
version: 2.13.0
44
homepage: https://mindbox.cloud/
55
repository: https://github.com/mindbox-cloud/flutter-sdk/tree/master/mindbox_ios
66

mindbox_platform_interface/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: mindbox_platform_interface
22
description: Mindbox platform interface.
3-
version: 2.11.0
3+
version: 2.13.0
44
homepage: https://mindbox.cloud/
55
repository: https://github.com/mindbox-cloud/flutter-sdk/tree/master/mindbox_platform_interface
66

0 commit comments

Comments
 (0)