diff --git a/.github/workflows/publish-dry-run.yml b/.github/workflows/publish-dry-run.yml new file mode 100644 index 0000000..ff89255 --- /dev/null +++ b/.github/workflows/publish-dry-run.yml @@ -0,0 +1,36 @@ +name: SDK publish dry run + +on: + workflow_dispatch: + push: + branches: + - 'publish-dry-run/**' + +jobs: + dry-run-publish: + runs-on: ubuntu-latest + name: ${{ matrix.package }} dry-run + strategy: + matrix: + package: + - mindbox_platform_interface + - mindbox_android + - mindbox_ios + - mindbox + fail-fast: false + + steps: + - uses: actions/checkout@v4 + + - uses: subosito/flutter-action@v2 + with: + channel: stable + + - name: Dry run publish + uses: sakebook/actions-flutter-pub-publisher@v1.3.1 + with: + package_directory: ${{ matrix.package }} + credential: ${{ secrets.PUB_CREDENTIALS }} + flutter_package: true + skip_test: true + dry_run: true diff --git a/mindbox/CHANGELOG.md b/mindbox/CHANGELOG.md index 245a823..9212ca2 100644 --- a/mindbox/CHANGELOG.md +++ b/mindbox/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2.15.1 + +* Upgrade native Android SDK dependency to v2.15.1. +* Upgrade native iOS SDK dependency to v2.15.0. + ## 2.15.0 * Upgrade native Android SDK dependency to v2.15.0. diff --git a/mindbox/pubspec.yaml b/mindbox/pubspec.yaml index b50f349..6029d95 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.15.0 +version: 2.15.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.15.0 - mindbox_ios: ^2.15.0 - mindbox_platform_interface: ^2.15.0 + mindbox_android: ^2.15.1 + mindbox_ios: ^2.15.1 + mindbox_platform_interface: ^2.15.1 dev_dependencies: flutter_test: diff --git a/mindbox_android/CHANGELOG.md b/mindbox_android/CHANGELOG.md index d181056..7366545 100644 --- a/mindbox_android/CHANGELOG.md +++ b/mindbox_android/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.15.1 + +* Upgrade native Android SDK dependency to v2.15.1. + ## 2.15.0 * Upgrade native Android SDK dependency to v2.15.0. diff --git a/mindbox_android/android/build.gradle b/mindbox_android/android/build.gradle index ab233ee..990c134 100644 --- a/mindbox_android/android/build.gradle +++ b/mindbox_android/android/build.gradle @@ -50,5 +50,5 @@ android { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" - api 'cloud.mindbox:mobile-sdk:2.15.0' + api 'cloud.mindbox:mobile-sdk:2.15.1' } diff --git a/mindbox_android/pubspec.yaml b/mindbox_android/pubspec.yaml index edb00eb..046fb3a 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.15.0 +version: 2.15.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.15.0 + mindbox_platform_interface: ^2.15.1 dev_dependencies: flutter_test: diff --git a/mindbox_ios/CHANGELOG.md b/mindbox_ios/CHANGELOG.md index 75f1298..670692d 100644 --- a/mindbox_ios/CHANGELOG.md +++ b/mindbox_ios/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.15.1 + +* Upgrade native iOS SDK dependency to v2.15.0. + ## 2.15.0 * Upgrade native iOS SDK dependency to v2.15.0. diff --git a/mindbox_ios/pubspec.yaml b/mindbox_ios/pubspec.yaml index 1c80597..efa7f9f 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.15.0 +version: 2.15.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.15.0 + mindbox_platform_interface: ^2.15.1 dev_dependencies: flutter_test: diff --git a/mindbox_platform_interface/CHANGELOG.md b/mindbox_platform_interface/CHANGELOG.md index 90521dc..bcb041a 100644 --- a/mindbox_platform_interface/CHANGELOG.md +++ b/mindbox_platform_interface/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2.15.1 + +* Upgrade native Android SDK dependency to v2.15.1. +* Upgrade native iOS SDK dependency to v2.15.0. + ## 2.15.0 * Upgrade native Android SDK dependency to v2.15.0. diff --git a/mindbox_platform_interface/pubspec.yaml b/mindbox_platform_interface/pubspec.yaml index d8b0888..1bc0dd2 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.15.0 +version: 2.15.1 homepage: https://mindbox.cloud/ repository: https://github.com/mindbox-cloud/flutter-sdk/tree/master/mindbox_platform_interface