diff --git a/CHANGELOG.md b/CHANGELOG.md index 740c4c4f7..7409a5259 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [10.0.1] +### Fixed +- [#11813](https://github.com/MetaMask/metamask-extension/pull/11813): Fix error reporting version configuration + ## [10.0.0] ### Added - [#11694](https://github.com/MetaMask/metamask-extension/pull/11694): Add support for EIP-1559 transactions @@ -2395,7 +2399,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Uncategorized - Added the ability to restore accounts from seed words. -[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v10.0.0...HEAD +[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v10.0.1...HEAD +[10.0.1]: https://github.com/MetaMask/metamask-extension/compare/v10.0.0...v10.0.1 [10.0.0]: https://github.com/MetaMask/metamask-extension/compare/v9.8.4...v10.0.0 [9.8.4]: https://github.com/MetaMask/metamask-extension/compare/v9.8.3...v9.8.4 [9.8.3]: https://github.com/MetaMask/metamask-extension/compare/v9.8.2...v9.8.3 diff --git a/development/build/scripts.js b/development/build/scripts.js index 5f4f98a22..28ee1be31 100644 --- a/development/build/scripts.js +++ b/development/build/scripts.js @@ -36,7 +36,7 @@ const metamaskrc = require('rc')('metamask', { }); const { streamFlatMap } = require('../stream-flat-map.js'); -const baseManifest = require('../../app/manifest/_base.json'); +const { version } = require('../../package.json'); const { createTask, composeParallel, @@ -522,7 +522,7 @@ function getEnvironmentVariables({ devMode, testing }) { return { METAMASK_DEBUG: devMode, METAMASK_ENVIRONMENT: environment, - METAMASK_VERSION: baseManifest.version, + METAMASK_VERSION: version, NODE_ENV: devMode ? 'development' : 'production', IN_TEST: testing ? 'true' : false, PUBNUB_SUB_KEY: process.env.PUBNUB_SUB_KEY || '', diff --git a/package.json b/package.json index 78277fcd3..916483197 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "metamask-crx", - "version": "10.0.0", + "version": "10.0.1", "private": true, "repository": { "type": "git", diff --git a/yarn.lock b/yarn.lock index a75eb3829..425241749 100644 --- a/yarn.lock +++ b/yarn.lock @@ -21426,9 +21426,9 @@ path-key@^3.0.0, path-key@^3.1.0: integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== path-parse@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" - integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== path-platform@~0.11.15: version "0.11.15"