From 2fc6c50de2a25a24d31dacee9f5e080e9d44723f Mon Sep 17 00:00:00 2001 From: MetaMask Bot Date: Tue, 24 Sep 2019 15:50:32 +0000 Subject: [PATCH 1/3] Version v7.2.2 --- CHANGELOG.md | 2 ++ app/manifest.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09711479a..e835ad77c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Current Develop Branch +## 7.2.2 Tue Sep 24 2019 + ## 7.2.1 Tue Sep 17 2019 - [#7180](https://github.com/MetaMask/metamask-extension/pull/7180): Add `appName` message to each locale diff --git a/app/manifest.json b/app/manifest.json index 6baedd0b9..7a412691b 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -1,7 +1,7 @@ { "name": "__MSG_appName__", "short_name": "__MSG_appName__", - "version": "7.2.1", + "version": "7.2.2", "manifest_version": 2, "author": "https://metamask.io", "description": "__MSG_appDescription__", From 288553f300fcab073e0b3201b813db482a050ceb Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Tue, 24 Sep 2019 12:49:24 -0300 Subject: [PATCH 2/3] Update minimum Firefox verison to 56.0 (#7213) The previous minimum version of 56.2 resulted in the build failing validation when it was uploaded to the Firefox web store, because that version doesn't exist. It was set to that version because a Firefox fork uses it. Instead the minimum version has been reduced so that we pass validation. Unfortunately this will mean that a single incompatible version of Firefox Mobile will allow the extension to be installed (in theory), but there was no other way to avoid cutting off support to WaterFox (the Firefox fork). The warning about this from the addons linter can be ignored for now. --- app/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/manifest.json b/app/manifest.json index 7a412691b..3740a957a 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -22,7 +22,7 @@ "applications": { "gecko": { "id": "webextension@metamask.io", - "strict_min_version": "56.2" + "strict_min_version": "56.0" } }, "default_locale": "en", From 1375a86eaf007ab288348fff6aefffa94932ad79 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Tue, 24 Sep 2019 09:57:51 -0600 Subject: [PATCH 3/3] Add v7.2.2 to changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e835ad77c..5c3f2ca74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## Current Develop Branch ## 7.2.2 Tue Sep 24 2019 +- [#7213](https://github.com/MetaMask/metamask-extension/pull/7213): Update minimum Firefox verison to 56.0 ## 7.2.1 Tue Sep 17 2019 - [#7180](https://github.com/MetaMask/metamask-extension/pull/7180): Add `appName` message to each locale