Skip to content

Commit c973be6

Browse files
authored
release: 104.0.0 (#535)
## Description This is the release candidate for version 104.0.0. See the changelogs for more details. <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > Release-only changes: version bumps, changelog entries, and a dependency range update with no runtime code modifications. > > **Overview** > Bumps the monorepo release version to `104.0.0` and publishes new package versions for `@metamask/eth-hd-keyring` (`14.1.0`) and `@metamask/eth-money-keyring` (`2.0.3`). > > Updates changelogs to reflect the new releases, and updates `@metamask/eth-money-keyring` to depend on `@metamask/eth-hd-keyring@^14.1.0` (with corresponding `yarn.lock` changes). > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit 02f9626. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent b89fbcd commit c973be6

6 files changed

Lines changed: 18 additions & 8 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/accounts-monorepo",
3-
"version": "103.0.0",
3+
"version": "104.0.0",
44
"private": true,
55
"description": "Monorepo for MetaMask accounts related packages",
66
"repository": {

packages/keyring-eth-hd/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [14.1.0]
11+
1012
### Added
1113

1214
- Expose same getters in `HdKeyring` (v2 keyring wrapper from `/v2`) ([#529](https://github.com/MetaMask/accounts/pull/529))
@@ -280,7 +282,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
280282
- Deserialize method (and `HdKeyring` constructor by extension) can no longer be passed an options object containing a value for `numberOfAccounts` if it is not also containing a value for `mnemonic`.
281283
- Package name changed from `eth-hd-keyring` to `@metamask/eth-hd-keyring`.
282284

283-
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@14.0.1...HEAD
285+
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@14.1.0...HEAD
286+
[14.1.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@14.0.1...@metamask/eth-hd-keyring@14.1.0
284287
[14.0.1]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@14.0.0...@metamask/eth-hd-keyring@14.0.1
285288
[14.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@13.1.1...@metamask/eth-hd-keyring@14.0.0
286289
[13.1.1]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@13.1.0...@metamask/eth-hd-keyring@13.1.1

packages/keyring-eth-hd/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/eth-hd-keyring",
3-
"version": "14.0.1",
3+
"version": "14.1.0",
44
"description": "A simple standard interface for a seed phrase generated set of Ethereum accounts",
55
"keywords": [
66
"ethereum",

packages/keyring-eth-money/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.0.3]
11+
12+
### Changed
13+
14+
- Bump `@metamask/eth-hd-keyring` from `^14.0.1` to `^14.1.0` ([#535](https://github.com/MetaMask/accounts/pull/535))
15+
1016
## [2.0.2]
1117

1218
### Changed
@@ -55,7 +61,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5561
- Uses derivation path `"m/44'/4392018'/0'/0"`.
5662
- Enforces that at most one Money account can exist.
5763

58-
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-money-keyring@2.0.2...HEAD
64+
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-money-keyring@2.0.3...HEAD
65+
[2.0.3]: https://github.com/MetaMask/accounts/compare/@metamask/eth-money-keyring@2.0.2...@metamask/eth-money-keyring@2.0.3
5966
[2.0.2]: https://github.com/MetaMask/accounts/compare/@metamask/eth-money-keyring@2.0.1...@metamask/eth-money-keyring@2.0.2
6067
[2.0.1]: https://github.com/MetaMask/accounts/compare/@metamask/eth-money-keyring@2.0.0...@metamask/eth-money-keyring@2.0.1
6168
[2.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-money-keyring@1.0.0...@metamask/eth-money-keyring@2.0.0

packages/keyring-eth-money/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/eth-money-keyring",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "A money account keyring that wraps the HD keyring with a different keyring type and derivation path",
55
"keywords": [
66
"ethereum",
@@ -55,7 +55,7 @@
5555
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
5656
},
5757
"dependencies": {
58-
"@metamask/eth-hd-keyring": "^14.0.1",
58+
"@metamask/eth-hd-keyring": "^14.1.0",
5959
"@metamask/keyring-api": "^23.0.1",
6060
"@metamask/keyring-utils": "^3.2.0",
6161
"@metamask/superstruct": "^3.1.0",

yarn.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1744,7 +1744,7 @@ __metadata:
17441744
languageName: node
17451745
linkType: hard
17461746

1747-
"@metamask/eth-hd-keyring@npm:^14.0.1, @metamask/eth-hd-keyring@workspace:packages/keyring-eth-hd":
1747+
"@metamask/eth-hd-keyring@npm:^14.1.0, @metamask/eth-hd-keyring@workspace:packages/keyring-eth-hd":
17481748
version: 0.0.0-use.local
17491749
resolution: "@metamask/eth-hd-keyring@workspace:packages/keyring-eth-hd"
17501750
dependencies:
@@ -1822,7 +1822,7 @@ __metadata:
18221822
"@lavamoat/allow-scripts": "npm:^3.2.1"
18231823
"@lavamoat/preinstall-always-fail": "npm:^2.1.0"
18241824
"@metamask/auto-changelog": "npm:^6.1.0"
1825-
"@metamask/eth-hd-keyring": "npm:^14.0.1"
1825+
"@metamask/eth-hd-keyring": "npm:^14.1.0"
18261826
"@metamask/eth-sig-util": "npm:^8.2.0"
18271827
"@metamask/key-tree": "npm:^10.0.2"
18281828
"@metamask/keyring-api": "npm:^23.0.1"

0 commit comments

Comments
 (0)