diff options
author | Dan Finlay <dan@danfinlay.com> | 2018-11-20 08:55:06 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2018-11-20 09:02:04 +0800 |
commit | 398844e1344413f23d9129a65166fc78501508c2 (patch) | |
tree | 476b5b794ab6f450659f8e38fccab31e9625c8c7 | |
parent | 4c87c05a02d5bf5634234a74910e5d3e559dd413 (diff) | |
download | tangerine-wallet-browser-398844e1344413f23d9129a65166fc78501508c2.tar.gz tangerine-wallet-browser-398844e1344413f23d9129a65166fc78501508c2.tar.zst tangerine-wallet-browser-398844e1344413f23d9129a65166fc78501508c2.zip |
Version 5.0.3
Includes a fix to the `version:bump` script that now correctly updates
the changelog header.
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rw-r--r-- | app/manifest.json | 2 | ||||
-rw-r--r-- | development/version-bump.js | 2 | ||||
-rw-r--r-- | test/unit/development/sample-changelog.md | 2 |
4 files changed, 7 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index bc9158c23..7571955d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,12 @@ # Changelog ## Current Develop Branch -- [#5694](https://github.com/MetaMask/metamask-extension/pull/5694): Version 5.0.1 -- [#5547](https://github.com/MetaMask/metamask-extension/pull/5547): Bundle some ui dependencies separately to limit the build size of ui.js +## 5.0.3 Mon Nov 19 2018 + +- [#5547](https://github.com/MetaMask/metamask-extension/pull/5547): Bundle some ui dependencies separately to limit the build size of ui.js - Resubmit approved transactions on new block, to fix bug where an error can stick transactions in this state. +- Fixed a bug that could cause an error when sending the max number of tokens. ## 5.0.2 Friday November 9 2018 diff --git a/app/manifest.json b/app/manifest.json index 2dd8429af..8bf51cfd7 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -1,7 +1,7 @@ { "name": "__MSG_appName__", "short_name": "__MSG_appName__", - "version": "5.0.2", + "version": "5.0.3", "manifest_version": 2, "author": "https://metamask.io", "description": "__MSG_appDescription__", diff --git a/development/version-bump.js b/development/version-bump.js index fa20e9f75..66b6baffe 100644 --- a/development/version-bump.js +++ b/development/version-bump.js @@ -10,7 +10,7 @@ async function versionBump (bumpType, changelog, oldManifest) { const logHeader = `\n## ${newVersion} ${date}` const logLines = changelog.split('\n') for (let i = 0; i < logLines.length; i++) { - if (logLines[i].includes('Current Master')) { + if (logLines[i].includes('Current Develop Branch')) { logLines.splice(i + 1, 0, logHeader) break } diff --git a/test/unit/development/sample-changelog.md b/test/unit/development/sample-changelog.md index fd980e375..69f6513e6 100644 --- a/test/unit/development/sample-changelog.md +++ b/test/unit/development/sample-changelog.md @@ -1,6 +1,6 @@ # Changelog -## Current Master +## Current Develop Branch ## 4.1.3 2018-2-28 |