Skip to content

Commit 5956f8d

Browse files
danfinlayfrankiebee
authored andcommitted
Version 5.0.3 (#5785)
* Version 5.0.3 Includes a fix to the `version:bump` script that now correctly updates the changelog header. * Include inpage provider events
1 parent a7b3750 commit 5956f8d

File tree

6 files changed

+270
-277
lines changed

6 files changed

+270
-277
lines changed

CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# Changelog
22

33
## Current Develop Branch
4-
- [#5694](https://github.com/MetaMask/metamask-extension/pull/5694): Version 5.0.1
5-
- [#5547](https://github.com/MetaMask/metamask-extension/pull/5547): Bundle some ui dependencies separately to limit the build size of ui.js
64

5+
## 5.0.3 Mon Nov 19 2018
6+
7+
- [#5547](https://github.com/MetaMask/metamask-extension/pull/5547): Bundle some ui dependencies separately to limit the build size of ui.js
78
- Resubmit approved transactions on new block, to fix bug where an error can stick transactions in this state.
9+
- Fixed a bug that could cause an error when sending the max number of tokens.
810

911
## 5.0.2 Friday November 9 2018
1012

app/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "__MSG_appName__",
33
"short_name": "__MSG_appName__",
4-
"version": "5.0.2",
4+
"version": "5.0.3",
55
"manifest_version": 2,
66
"author": "https://metamask.io",
77
"description": "__MSG_appDescription__",

development/version-bump.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ async function versionBump (bumpType, changelog, oldManifest) {
1010
const logHeader = `\n## ${newVersion} ${date}`
1111
const logLines = changelog.split('\n')
1212
for (let i = 0; i < logLines.length; i++) {
13-
if (logLines[i].includes('Current Master')) {
13+
if (logLines[i].includes('Current Develop Branch')) {
1414
logLines.splice(i + 1, 0, logHeader)
1515
break
1616
}

0 commit comments

Comments
 (0)