Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into Version-v8.0.0
Browse files Browse the repository at this point in the history
* origin/develop:
  Fix manifest version bump script (#8715)
  Consistent rounded corners on tx details modal/popup (#8714)
  • Loading branch information
Gudahtt committed Jun 1, 2020
2 parents 21b7e42 + 991ef36 commit 2a4704a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/scripts/release-bump-manifest-version
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ fi
printf '%s\n' 'Updating the manifest version if needed'

version="${CIRCLE_BRANCH/Version-v/}"
updated_manifest="$(jq ".version = \"$version\"" app/manifest.json)"
printf '%s\n' "$updated_manifest" > app/manifest.json
updated_manifest="$(jq ".version = \"$version\"" app/manifest/_base.json)"
printf '%s\n' "$updated_manifest" > app/manifest/_base.json

if [[ -z $(git status --porcelain) ]]
then
Expand All @@ -32,7 +32,7 @@ git \
-c user.name='MetaMask Bot' \
-c user.email='[email protected]' \
commit --message "${CIRCLE_BRANCH/-/ }" \
CHANGELOG.md app/manifest.json
CHANGELOG.md app/manifest/_base.json

repo_slug="$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME"
git push "https://$GITHUB_TOKEN_USER:$GITHUB_TOKEN@github.com/$repo_slug" "$CIRCLE_BRANCH"
1 change: 1 addition & 0 deletions ui/app/components/ui/popover/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
justify-content: flex-start;
align-items: stretch;
align-content: stretch;
border-radius: 10px;
}

&-container {
Expand Down

0 comments on commit 2a4704a

Please sign in to comment.