@metamask/eth-hd-keyring 10.0.0 → 10.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -1
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [10.0.1]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Use `ts-bridge/cli@0.6.3` ([#214](https://github.com/MetaMask/accounts/pull/214))
|
|
15
|
+
- This new version fixes a bug regarding some missing exports.
|
|
16
|
+
|
|
10
17
|
## [10.0.0]
|
|
11
18
|
|
|
12
19
|
### Added
|
|
@@ -168,7 +175,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
168
175
|
- 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`.
|
|
169
176
|
- Package name changed from `eth-hd-keyring` to `@metamask/eth-hd-keyring`.
|
|
170
177
|
|
|
171
|
-
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@10.0.
|
|
178
|
+
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@10.0.1...HEAD
|
|
179
|
+
[10.0.1]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@10.0.0...@metamask/eth-hd-keyring@10.0.1
|
|
172
180
|
[10.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@9.0.1...@metamask/eth-hd-keyring@10.0.0
|
|
173
181
|
[9.0.1]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@9.0.0...@metamask/eth-hd-keyring@9.0.1
|
|
174
182
|
[9.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@8.0.0...@metamask/eth-hd-keyring@9.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/eth-hd-keyring",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.1",
|
|
4
4
|
"description": "A simple standard interface for a seed phrase generated set of Ethereum accounts.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ethereum",
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
"url": "https://github.com/MetaMask/eth-hd-keyring.git"
|
|
16
16
|
},
|
|
17
17
|
"license": "ISC",
|
|
18
|
-
"author": "Dan Finlay",
|
|
19
18
|
"exports": {
|
|
20
19
|
".": {
|
|
21
20
|
"import": {
|
|
@@ -57,7 +56,7 @@
|
|
|
57
56
|
"@lavamoat/preinstall-always-fail": "^2.1.0",
|
|
58
57
|
"@metamask/auto-changelog": "^3.4.4",
|
|
59
58
|
"@metamask/bip39": "^4.0.0",
|
|
60
|
-
"@ts-bridge/cli": "^0.6.
|
|
59
|
+
"@ts-bridge/cli": "^0.6.3",
|
|
61
60
|
"@types/jest": "^29.5.12",
|
|
62
61
|
"deepmerge": "^4.2.2",
|
|
63
62
|
"jest": "^29.5.0",
|