diff --git a/mindbox/CHANGELOG.md b/mindbox/CHANGELOG.md index 3ece72e..0fd9af0 100644 --- a/mindbox/CHANGELOG.md +++ b/mindbox/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2.10.1 + +* Upgrade native Android SDK dependency to v2.10.1. +* Upgrade native iOS SDK dependency to v2.10.2. + ## 2.10.0 * Upgrade native Android SDK dependency to v2.10.0. diff --git a/mindbox/LICENSE.md b/mindbox/LICENSE similarity index 100% rename from mindbox/LICENSE.md rename to mindbox/LICENSE diff --git a/mindbox/example/README.md b/mindbox/example/README.md index a6491c2..17be5ec 100644 --- a/mindbox/example/README.md +++ b/mindbox/example/README.md @@ -13,4 +13,4 @@ A few resources to get you started if this is your first Flutter project: For help getting started with Flutter, view our [online documentation](https://flutter.dev/docs), which offers tutorials, -samples, guidance on mobile development, and a full API reference. +samples, guidance on mobile development, and a full API reference. diff --git a/mindbox/pubspec.yaml b/mindbox/pubspec.yaml index 2dc2278..d1fc15c 100644 --- a/mindbox/pubspec.yaml +++ b/mindbox/pubspec.yaml @@ -1,6 +1,6 @@ name: mindbox description: Flutter Mindbox SDK. Plugin wrapper over of Mindbox iOS/Android SDK. -version: 2.10.0 +version: 2.10.1 homepage: https://mindbox.cloud/ repository: https://github.com/mindbox-cloud/flutter-sdk/tree/master/mindbox documentation: https://developers.mindbox.ru/docs/flutter-sdk-integration @@ -20,9 +20,9 @@ flutter: dependencies: flutter: sdk: flutter - mindbox_android: ^2.10.0 - mindbox_ios: ^2.10.0 - mindbox_platform_interface: ^2.10.0 + mindbox_android: ^2.10.1 + mindbox_ios: ^2.10.1 + mindbox_platform_interface: ^2.10.1 dev_dependencies: flutter_test: @@ -30,5 +30,5 @@ dev_dependencies: flutter_lints: ^2.0.1 analyzer: - exclude: ['**_test.dart'] + exclude: ['**_test.dart'] diff --git a/mindbox_android/CHANGELOG.md b/mindbox_android/CHANGELOG.md index 006fda0..73278eb 100644 --- a/mindbox_android/CHANGELOG.md +++ b/mindbox_android/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.10.1 + +* Upgrade native Android SDK dependency to v2.10.1. + ## 2.10.0 * Upgrade native Android SDK dependency to v2.10.0. diff --git a/mindbox_android/LICENSE.md b/mindbox_android/LICENSE similarity index 100% rename from mindbox_android/LICENSE.md rename to mindbox_android/LICENSE diff --git a/mindbox_android/android/build.gradle b/mindbox_android/android/build.gradle index ee97718..a5f74da 100644 --- a/mindbox_android/android/build.gradle +++ b/mindbox_android/android/build.gradle @@ -49,5 +49,5 @@ android { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" - api 'cloud.mindbox:mobile-sdk:2.10.0' + api 'cloud.mindbox:mobile-sdk:2.10.1' } diff --git a/mindbox_android/pubspec.yaml b/mindbox_android/pubspec.yaml index 696955c..7fa21c9 100644 --- a/mindbox_android/pubspec.yaml +++ b/mindbox_android/pubspec.yaml @@ -1,6 +1,6 @@ name: mindbox_android description: The implementation of 'mindbox' plugin for the Android platform. -version: 2.10.0 +version: 2.10.1 homepage: https://mindbox.cloud/ repository: https://github.com/mindbox-cloud/flutter-sdk/tree/master/mindbox_android @@ -19,7 +19,7 @@ flutter: dependencies: flutter: sdk: flutter - mindbox_platform_interface: ^2.10.0 + mindbox_platform_interface: ^2.10.1 dev_dependencies: flutter_test: @@ -27,5 +27,5 @@ dev_dependencies: flutter_lints: ^2.0.1 analyzer: - exclude: ['**_test.dart'] + exclude: ['**_test.dart'] diff --git a/mindbox_ios/CHANGELOG.md b/mindbox_ios/CHANGELOG.md index d3ddde0..1324d78 100644 --- a/mindbox_ios/CHANGELOG.md +++ b/mindbox_ios/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.10.1 + +* Upgrade native iOS SDK dependency to v2.10.2. + ## 2.10.0 * Upgrade native iOS SDK dependency to v2.10.1. diff --git a/mindbox_ios/LICENSE.md b/mindbox_ios/LICENSE similarity index 100% rename from mindbox_ios/LICENSE.md rename to mindbox_ios/LICENSE diff --git a/mindbox_ios/ios/mindbox_ios.podspec b/mindbox_ios/ios/mindbox_ios.podspec index fbccc26..5388b5a 100644 --- a/mindbox_ios/ios/mindbox_ios.podspec +++ b/mindbox_ios/ios/mindbox_ios.podspec @@ -4,7 +4,7 @@ # Pod::Spec.new do |s| s.name = 'mindbox_ios' - s.version = '2.10.0' + s.version = '2.10.1' s.summary = 'Mindbox Flutter SDK' s.description = <<-DESC The implementation of 'mindbox' plugin for the iOS platform @@ -15,8 +15,8 @@ The implementation of 'mindbox' plugin for the iOS platform s.source = { :path => '.' } s.source_files = 'Classes/**/*' s.dependency 'Flutter' - s.dependency 'Mindbox', '2.10.1' - s.dependency 'MindboxNotifications', '2.10.1' + s.dependency 'Mindbox', '2.10.2' + s.dependency 'MindboxNotifications', '2.10.2' s.platform = :ios, '10.0' # Flutter.framework does not contain a i386 slice. diff --git a/mindbox_ios/pubspec.yaml b/mindbox_ios/pubspec.yaml index 5f08932..362cc1b 100644 --- a/mindbox_ios/pubspec.yaml +++ b/mindbox_ios/pubspec.yaml @@ -1,6 +1,6 @@ name: mindbox_ios description: The implementation of 'mindbox' plugin for the iOS platform. -version: 2.10.0 +version: 2.10.1 homepage: https://mindbox.cloud/ repository: https://github.com/mindbox-cloud/flutter-sdk/tree/master/mindbox_ios @@ -18,7 +18,7 @@ flutter: dependencies: flutter: sdk: flutter - mindbox_platform_interface: ^2.10.0 + mindbox_platform_interface: ^2.10.1 dev_dependencies: flutter_test: @@ -26,4 +26,4 @@ dev_dependencies: flutter_lints: ^2.0.1 analyzer: - exclude: ['**_test.dart'] \ No newline at end of file + exclude: ['**_test.dart'] \ No newline at end of file diff --git a/mindbox_platform_interface/CHANGELOG.md b/mindbox_platform_interface/CHANGELOG.md index 7269ec8..c6bf22d 100644 --- a/mindbox_platform_interface/CHANGELOG.md +++ b/mindbox_platform_interface/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2.10.1 + +* Upgrade native Android SDK dependency to v2.10.1. +* Upgrade native iOS SDK dependency to v2.10.2. + ## 2.10.0 * Upgrade native Android SDK dependency to v2.10.0. diff --git a/mindbox_platform_interface/LICENSE.md b/mindbox_platform_interface/LICENSE similarity index 100% rename from mindbox_platform_interface/LICENSE.md rename to mindbox_platform_interface/LICENSE diff --git a/mindbox_platform_interface/pubspec.yaml b/mindbox_platform_interface/pubspec.yaml index 99b49a8..fad3f27 100644 --- a/mindbox_platform_interface/pubspec.yaml +++ b/mindbox_platform_interface/pubspec.yaml @@ -1,6 +1,6 @@ name: mindbox_platform_interface description: Mindbox platform interface. -version: 2.10.0 +version: 2.10.1 homepage: https://mindbox.cloud/ repository: https://github.com/mindbox-cloud/flutter-sdk/tree/master/mindbox_platform_interface @@ -18,4 +18,4 @@ dev_dependencies: flutter_lints: ^2.0.1 analyzer: - exclude: ['**_test.dart'] \ No newline at end of file + exclude: ['**_test.dart'] \ No newline at end of file