You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: source mobile version from build.gradle/pbxproj instead of bitrise.yml (#269)
Mobile release automation previously read the build number from and wrote
version fields into bitrise.yml. This coupled the release flow to a file that
is no longer a live Bitrise CI config, so consumers could not remove it.
Source the build number (versionCode / CURRENT_PROJECT_VERSION) and semver
(versionName / MARKETING_VERSION) directly from android/app/build.gradle and
ios/MetaMask.xcodeproj/project.pbxproj, matching mobile's own
scripts/set-build-version.sh. Extension flow is unaffected.
- set-semvar-version.sh: drop bitrise VERSION_NAME write and the bitrise-based
build-number alignment check
- set-mobile-build-version.sh: read/write build.gradle + pbxproj, drop bitrise
and the flask alignment check
- create-platform-release-pr.sh: drop bitrise.yml from mobile expected files
- stable-sync action: drop bitrise.yml from PR body preservation text
Co-authored-by: Cursor <cursoragent@cursor.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [Unreleased]
9
9
10
+
### Changed
11
+
12
+
- Mobile release automation no longer reads from or writes to `bitrise.yml`; the build number (`versionCode` / `CURRENT_PROJECT_VERSION`) and semver (`versionName` / `MARKETING_VERSION`) are now sourced from `android/app/build.gradle` and `ios/MetaMask.xcodeproj/project.pbxproj` directly
13
+
-`set-semvar-version.sh`, `set-mobile-build-version.sh`, and `create-platform-release-pr.sh` updated accordingly, allowing consumers to remove `bitrise.yml`
0 commit comments