Skip to content

Commit f0b6941

Browse files
chore(release): Bump main version to 7.81.0 (MetaMask#30778)
<!-- Please submit this PR as a draft initially. Do not mark it as "Ready for review" until this PR meets the canonical Definition of Ready For Review in `docs/readme/ready-for-review.md`. In short: the template must be materially complete (not just section titles present), all status checks must be currently passing, and the only expected follow-up commits must be reviewer-driven. --> ## **Description** <!-- Write a short description of the changes included in this pull request, also include relevant motivation and context. Have in mind the following questions: 1. What is the reason for the change? 2. What is the improvement/solution? --> Version Bump After Release This PR bumps the main branch version from 7.80.0 to 7.81.0 after cutting the release branch. created manually as the automation was broken ## **Changelog** <!-- If this PR is not End-User-Facing and should not show up in the CHANGELOG, you can choose to either: 1. Write `CHANGELOG entry: null` 2. Label with `no-changelog` If this PR is End-User-Facing, please write a short User-Facing description in the past tense like: `CHANGELOG entry: Added a new tab for users to see their NFTs` `CHANGELOG entry: Fixed a bug that was causing some NFTs to flicker` (This helps the Release Engineer do their job more quickly and accurately) --> CHANGELOG entry: null ## **Related issues** Fixes: ## **Manual testing steps** ```gherkin Feature: my feature name Scenario: user [verb for user action] Given [describe expected initial app state] When user [verb for user action] Then [describe expected outcome] ``` ## **Screenshots/Recordings** <!-- If applicable, add screenshots and/or recordings to visualize the before and after of your change. --> ### **Before** <!-- [screenshots/recordings] --> ### **After** <!-- [screenshots/recordings] --> ## **Pre-merge author checklist** <!-- Every checklist item must be consciously assessed before marking this PR as "Ready for review". A checked box means you deliberately considered that responsibility, not that you literally performed every action listed. Unchecked boxes are ambiguous: they are not an implicit "N/A" and they are not a silent "skip". See `docs/readme/ready-for-review.md` for the full checklist semantics. --> - [ ] I've followed [MetaMask Contributor Docs](https://github.com/MetaMask/contributor-docs) and [MetaMask Mobile Coding Standards](https://github.com/MetaMask/metamask-mobile/blob/main/.github/guidelines/CODING_GUIDELINES.md). - [ ] I've completed the PR template to the best of my ability - [ ] I've included tests if applicable - [ ] I've documented my code using [JSDoc](https://jsdoc.app/) format if applicable - [ ] I've applied the right labels on the PR (see [labeling guidelines](https://github.com/MetaMask/metamask-mobile/blob/main/.github/guidelines/LABELING_GUIDELINES.md)). Not required for external contributors. #### Performance checks (if applicable) - [ ] I've tested on Android - Ideally on a mid-range device; emulator is acceptable - [ ] I've tested with a power user scenario - Use these [power-user SRPs](https://consensyssoftware.atlassian.net/wiki/spaces/TL1/pages/edit-v2/401401446401?draftShareId=9d77e1e1-4bdc-4be1-9ebb-ccd916988d93) to import wallets with many accounts and tokens - [ ] I've instrumented key operations with Sentry traces for production performance metrics - See [`trace()`](/app/util/trace.ts) for usage and [`addToken`](/app/components/Views/AddAsset/components/AddCustomToken/AddCustomToken.tsx#L274) for an example For performance guidelines and tooling, see the [Performance Guide](https://consensyssoftware.atlassian.net/wiki/spaces/TL1/pages/400085549067/Performance+Guide+for+Engineers). ## **Pre-merge reviewer checklist** <!-- Reviewer checklist items follow the same semantics as the author checklist: an unchecked box is ambiguous, a checked box means the reviewer consciously assessed that responsibility. See `docs/readme/ready-for-review.md`. --> - [ ] I've manually tested the PR (e.g. pull and build branch, run the app, test code being changed). - [ ] I confirm that this PR addresses all acceptance criteria described in the ticket it closes and includes the necessary testing evidence such as recordings and or screenshots.
1 parent e0eb673 commit f0b6941

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ android {
181181
applicationId "io.metamask"
182182
minSdkVersion rootProject.ext.minSdkVersion
183183
targetSdkVersion rootProject.ext.targetSdkVersion
184-
versionName "7.80.0"
184+
versionName "7.81.0"
185185
versionCode 4532
186186
testBuildType System.getProperty('testBuildType', 'debug')
187187
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

ios/MetaMask.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1028,7 +1028,7 @@
10281028
"${inherited}",
10291029
);
10301030
LLVM_LTO = YES;
1031-
MARKETING_VERSION = 7.80.0;
1031+
MARKETING_VERSION = 7.81.0;
10321032
ONLY_ACTIVE_ARCH = YES;
10331033
OTHER_CFLAGS = "$(inherited)";
10341034
OTHER_LDFLAGS = (
@@ -1094,7 +1094,7 @@
10941094
"${inherited}",
10951095
);
10961096
LLVM_LTO = YES;
1097-
MARKETING_VERSION = 7.80.0;
1097+
MARKETING_VERSION = 7.81.0;
10981098
ONLY_ACTIVE_ARCH = NO;
10991099
OTHER_CFLAGS = "$(inherited)";
11001100
OTHER_LDFLAGS = (
@@ -1163,7 +1163,7 @@
11631163
"\"$(SRCROOT)/MetaMask/System/Library/Frameworks\"",
11641164
);
11651165
LLVM_LTO = YES;
1166-
MARKETING_VERSION = 7.80.0;
1166+
MARKETING_VERSION = 7.81.0;
11671167
ONLY_ACTIVE_ARCH = YES;
11681168
OTHER_CFLAGS = "$(inherited)";
11691169
OTHER_LDFLAGS = (
@@ -1227,7 +1227,7 @@
12271227
"\"$(SRCROOT)/MetaMask/System/Library/Frameworks\"",
12281228
);
12291229
LLVM_LTO = YES;
1230-
MARKETING_VERSION = 7.80.0;
1230+
MARKETING_VERSION = 7.81.0;
12311231
ONLY_ACTIVE_ARCH = NO;
12321232
OTHER_CFLAGS = "$(inherited)";
12331233
OTHER_LDFLAGS = (

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metamask",
3-
"version": "7.80.0",
3+
"version": "7.81.0",
44
"private": true,
55
"scripts": {
66
"install:foundryup": "yarn mm-foundryup",

0 commit comments

Comments
 (0)