Skip to content

Commit 2aadca0

Browse files
authored
Release 91.0.0 (#3185)
This is the release candidate for version `91.0.0`. See the changelogs for more details.
1 parent 1ae17ed commit 2aadca0

File tree

59 files changed

+216
-98
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+216
-98
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "root",
3-
"version": "90.0.0",
3+
"version": "91.0.0",
44
"private": true,
55
"repository": {
66
"type": "git",

packages/examples/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/example-snaps",
3-
"version": "3.15.0",
3+
"version": "3.16.0",
44
"private": true,
55
"description": "A collection of examples demonstrating how to build MetaMask Snaps",
66
"keywords": [

packages/examples/packages/bip32/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [2.3.0]
11+
12+
### Added
13+
14+
- Add support for SIP-30 ([#3165](https://github.com/MetaMask/snaps/pull/3165))
15+
- The Snap now has a `getEntropySources` method that returns an array of
16+
entropy sources.
17+
- The existing methods now have an optional `source` parameter that can be
18+
used to specify the entropy source to use.
19+
1020
## [2.2.1]
1121

1222
### Fixed
@@ -77,7 +87,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7787
- The version of the package no longer needs to match the version of all other
7888
MetaMask Snaps packages.
7989

80-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
90+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
91+
[2.3.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
8192
[2.2.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
8293
[2.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
8394
[2.1.2]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/examples/packages/bip32/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/bip32-example-snap",
3-
"version": "2.2.1",
3+
"version": "2.3.0",
44
"description": "MetaMask example snap demonstrating the use of `snap_getBip32Entropy`",
55
"keywords": [
66
"MetaMask",

packages/examples/packages/bip32/snap.manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"version": "2.2.1",
2+
"version": "2.3.0",
33
"description": "MetaMask example snap demonstrating the use of `snap_getBip32Entropy`.",
44
"proposedName": "BIP-32 Example Snap",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/MetaMask/snaps.git"
88
},
99
"source": {
10-
"shasum": "Yv3r9ZD/tEehqvSUa/EfcAKa61eYLNvhqtRXxYy++q4=",
10+
"shasum": "EYj8a1CyBIrzcSGQ6EY9Ny6Q+azLzobzU7agR7CKisA=",
1111
"location": {
1212
"npm": {
1313
"filePath": "dist/bundle.js",
@@ -43,6 +43,6 @@
4343
}
4444
]
4545
},
46-
"platformVersion": "6.18.0",
46+
"platformVersion": "6.19.0",
4747
"manifestVersion": "0.1"
4848
}

packages/examples/packages/bip44/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [2.2.0]
11+
12+
### Added
13+
14+
- Add support for SIP-30 ([#3165](https://github.com/MetaMask/snaps/pull/3165))
15+
- The Snap now has a `getEntropySources` method that returns an array of
16+
entropy sources.
17+
- The existing methods now have an optional `source` parameter that can be
18+
used to specify the entropy source to use.
19+
1020
## [2.1.3]
1121

1222
### Fixed
@@ -78,7 +88,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7888
- The version of the package no longer needs to match the version of all other
7989
MetaMask Snaps packages.
8090

81-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
91+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
92+
[2.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
8293
[2.1.3]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
8394
[2.1.2]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
8495
[2.1.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/examples/packages/bip44/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/bip44-example-snap",
3-
"version": "2.1.3",
3+
"version": "2.2.0",
44
"description": "MetaMask example snap demonstrating the use of `snap_getBip44Entropy`",
55
"keywords": [
66
"MetaMask",

packages/examples/packages/bip44/snap.manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"version": "2.1.3",
2+
"version": "2.2.0",
33
"description": "MetaMask example snap demonstrating the use of `snap_getBip44Entropy`.",
44
"proposedName": "BIP-44 Example Snap",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/MetaMask/snaps.git"
88
},
99
"source": {
10-
"shasum": "s8y7K5HyKWgxVflPhs/Tdt69c/L2QT/vixntD9dnu+o=",
10+
"shasum": "7ITCfMBWovBJmXIqrHSIsO+DvhSI52fO07JRevLMIkw=",
1111
"location": {
1212
"npm": {
1313
"filePath": "dist/bundle.js",
@@ -31,6 +31,6 @@
3131
}
3232
]
3333
},
34-
"platformVersion": "6.18.0",
34+
"platformVersion": "6.19.0",
3535
"manifestVersion": "0.1"
3636
}

packages/examples/packages/browserify-plugin/snap.manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"url": "https://github.com/MetaMask/snaps.git"
88
},
99
"source": {
10-
"shasum": "F82zbRfEEnc1c86GZ4InV+zw8QWVrLUidEXAn9JEsQU=",
10+
"shasum": "BkSVql1/bpU0SEcfVP+nOYRmMEUo6VOYgMPR6T0zGuk=",
1111
"location": {
1212
"npm": {
1313
"filePath": "dist/bundle.js",
@@ -21,6 +21,6 @@
2121
"dapps": true
2222
}
2323
},
24-
"platformVersion": "6.18.0",
24+
"platformVersion": "6.19.0",
2525
"manifestVersion": "0.1"
2626
}

packages/examples/packages/browserify/snap.manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"url": "https://github.com/MetaMask/snaps.git"
88
},
99
"source": {
10-
"shasum": "1sJyCRTlEdkAIK1YhFlrKr10ANhP1JkHj6dO9TE2HNc=",
10+
"shasum": "Vrto5s9k5vDfqRSpjkAyEciAWEJhQ1yMmNoiWhENrUk=",
1111
"location": {
1212
"npm": {
1313
"filePath": "dist/bundle.js",
@@ -21,6 +21,6 @@
2121
"dapps": true
2222
}
2323
},
24-
"platformVersion": "6.18.0",
24+
"platformVersion": "6.19.0",
2525
"manifestVersion": "0.1"
2626
}

0 commit comments

Comments
 (0)