Skip to content

Commit 9c65b17

Browse files
authored
Merge pull request #192 from mindbox-cloud/release/2.15.1
Release 2.15.1
2 parents 50d8615 + 8ce2f41 commit 9c65b17

10 files changed

Lines changed: 64 additions & 10 deletions

File tree

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: SDK publish dry run
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- 'publish-dry-run/**'
8+
9+
jobs:
10+
dry-run-publish:
11+
runs-on: ubuntu-latest
12+
name: ${{ matrix.package }} dry-run
13+
strategy:
14+
matrix:
15+
package:
16+
- mindbox_platform_interface
17+
- mindbox_android
18+
- mindbox_ios
19+
- mindbox
20+
fail-fast: false
21+
22+
steps:
23+
- uses: actions/checkout@v4
24+
25+
- uses: subosito/flutter-action@v2
26+
with:
27+
channel: stable
28+
29+
- name: Dry run publish
30+
uses: sakebook/actions-flutter-pub-publisher@v1.3.1
31+
with:
32+
package_directory: ${{ matrix.package }}
33+
credential: ${{ secrets.PUB_CREDENTIALS }}
34+
flutter_package: true
35+
skip_test: true
36+
dry_run: true

mindbox/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.15.1
2+
3+
* Upgrade native Android SDK dependency to v2.15.1.
4+
* Upgrade native iOS SDK dependency to v2.15.0.
5+
16
## 2.15.0
27

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

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.15.0
3+
version: 2.15.1
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.15.0
24-
mindbox_ios: ^2.15.0
25-
mindbox_platform_interface: ^2.15.0
23+
mindbox_android: ^2.15.1
24+
mindbox_ios: ^2.15.1
25+
mindbox_platform_interface: ^2.15.1
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.15.1
2+
3+
* Upgrade native Android SDK dependency to v2.15.1.
4+
15
## 2.15.0
26

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

mindbox_android/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@ android {
5050

5151
dependencies {
5252
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
53-
api 'cloud.mindbox:mobile-sdk:2.15.0'
53+
api 'cloud.mindbox:mobile-sdk:2.15.1'
5454
}

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.15.0
3+
version: 2.15.1
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.15.0
22+
mindbox_platform_interface: ^2.15.1
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.15.1
2+
3+
* Upgrade native iOS SDK dependency to v2.15.0.
4+
15
## 2.15.0
26

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

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.15.0
3+
version: 2.15.1
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.15.0
21+
mindbox_platform_interface: ^2.15.1
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.15.1
2+
3+
* Upgrade native Android SDK dependency to v2.15.1.
4+
* Upgrade native iOS SDK dependency to v2.15.0.
5+
16
## 2.15.0
27

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

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.15.0
3+
version: 2.15.1
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)