Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8feceec

Browse files
authored
Merge pull request #113 from mindbox-cloud/release/2.10.2-rc
Release/2.10.2 rc
2 parents 0f9dc9c + 2ef6aa1 commit 8feceec

File tree

11 files changed

+32
-14
lines changed

11 files changed

+32
-14
lines changed

example/flutter_example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ void main() {
2121

2222
ViewModel.requestPermissions();
2323

24-
ViewModel.chooseInAppCallback(ChooseInappCallback.customInAppCallback);
24+
ViewModel.chooseInAppCallback(ChooseInappCallback.defaultInAppCallback);
2525

2626
runApp(const Example());
2727

mindbox/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.10.2-rc
2+
3+
* Upgrade native Android SDK dependency to v2.10.2-rc.
4+
* Upgrade native iOS SDK dependency to v2.10.3-rc.
5+
16
## 2.10.1
27

38
* Upgrade native Android SDK dependency to v2.10.1.

mindbox/pubspec.yaml

Lines changed: 4 additions & 4 deletions
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.10.1
3+
version: 2.10.2-rc
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
@@ -20,9 +20,9 @@ flutter:
2020
dependencies:
2121
flutter:
2222
sdk: flutter
23-
mindbox_android: ^2.10.1
24-
mindbox_ios: ^2.10.1
25-
mindbox_platform_interface: ^2.10.1
23+
mindbox_android: ^2.10.2-rc
24+
mindbox_ios: ^2.10.2-rc
25+
mindbox_platform_interface: ^2.10.2-rc
2626

2727
dev_dependencies:
2828
flutter_test:

mindbox_android/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.10.2-rc
2+
3+
* Upgrade native Android SDK dependency to v2.10.2-rc.
4+
15
## 2.10.1
26

37
* Upgrade native Android SDK dependency to v2.10.1.

mindbox_android/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ android {
4949
dependencies {
5050
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
5151

52-
api 'cloud.mindbox:mobile-sdk:2.10.1'
52+
api 'cloud.mindbox:mobile-sdk:2.10.2-rc'
5353
}

mindbox_android/pubspec.yaml

Lines changed: 2 additions & 2 deletions
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.10.1
3+
version: 2.10.2-rc
44
homepage: https://mindbox.cloud/
55
repository: https://github.com/mindbox-cloud/flutter-sdk/tree/master/mindbox_android
66

@@ -19,7 +19,7 @@ flutter:
1919
dependencies:
2020
flutter:
2121
sdk: flutter
22-
mindbox_platform_interface: ^2.10.1
22+
mindbox_platform_interface: ^2.10.2-rc
2323

2424
dev_dependencies:
2525
flutter_test:

mindbox_ios/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.10.2-rc
2+
3+
* Upgrade native iOS SDK dependency to v2.10.3-rc.
4+
15
## 2.10.1
26

37
* Upgrade native iOS SDK dependency to v2.10.2.

mindbox_ios/ios/mindbox_ios.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'mindbox_ios'
7-
s.version = '2.10.1'
7+
s.version = '2.10.3-rc'
88
s.summary = 'Mindbox Flutter SDK'
99
s.description = <<-DESC
1010
The implementation of 'mindbox' plugin for the iOS platform
@@ -15,8 +15,8 @@ The implementation of 'mindbox' plugin for the iOS platform
1515
s.source = { :path => '.' }
1616
s.source_files = 'Classes/**/*'
1717
s.dependency 'Flutter'
18-
s.dependency 'Mindbox', '2.10.2'
19-
s.dependency 'MindboxNotifications', '2.10.2'
18+
s.dependency 'Mindbox', '2.10.3-rc'
19+
s.dependency 'MindboxNotifications', '2.10.3-rc'
2020
s.platform = :ios, '10.0'
2121

2222
# Flutter.framework does not contain a i386 slice.

mindbox_ios/pubspec.yaml

Lines changed: 2 additions & 2 deletions
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.10.1
3+
version: 2.10.2-rc
44
homepage: https://mindbox.cloud/
55
repository: https://github.com/mindbox-cloud/flutter-sdk/tree/master/mindbox_ios
66

@@ -18,7 +18,7 @@ flutter:
1818
dependencies:
1919
flutter:
2020
sdk: flutter
21-
mindbox_platform_interface: ^2.10.1
21+
mindbox_platform_interface: ^2.10.2-rc
2222

2323
dev_dependencies:
2424
flutter_test:

mindbox_platform_interface/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.10.2-rc
2+
3+
* Upgrade native Android SDK dependency to v2.10.2-rc.
4+
* Upgrade native iOS SDK dependency to v2.10.3-rc.
5+
16
## 2.10.1
27

38
* Upgrade native Android SDK dependency to v2.10.1.

0 commit comments

Comments
 (0)