Skip to content

Commit 4f9015f

Browse files
authored
release: 100.0.0 (#3325)
This is the release candidate for version `100.0.0`.
1 parent 0912b0e commit 4f9015f

File tree

14 files changed

+52
-16
lines changed

14 files changed

+52
-16
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": "99.0.0",
3+
"version": "100.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.19.0",
3+
"version": "3.20.0",
44
"private": true,
55
"description": "A collection of examples demonstrating how to build MetaMask Snaps",
66
"keywords": [

packages/examples/packages/send-flow/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+
## [1.1.2]
11+
12+
### Fixed
13+
14+
- Add missing `displayAvatar` props ([#3312](https://github.com/MetaMask/snaps/pull/3312))
15+
1016
## [1.1.1]
1117

1218
### Changed
@@ -25,7 +31,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2531

2632
- Initial release of the `@metamask/send-flow-example-snap` example.
2733

28-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
34+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
35+
[1.1.2]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
2936
[1.1.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
3037
[1.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
3138
[1.0.0]: https://github.com/MetaMask/snaps/releases/tag/@metamask/[email protected]

packages/examples/packages/send-flow/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/send-flow-example-snap",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "MetaMask example Snap demonstrating a send flow with UI components",
55
"keywords": [
66
"MetaMask",

packages/examples/packages/send-flow/snap.manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"version": "1.1.1",
2+
"version": "1.1.2",
33
"description": "MetaMask example snap demonstrating a send flow with UI components.",
44
"proposedName": "Send flow Example Snap",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/MetaMask/snaps.git"
88
},
99
"source": {
10-
"shasum": "FOyn/lPGc/Fu6cW6EgX8OwklVJ/+HBydyqz+IDE8M+U=",
10+
"shasum": "vxFi0vcu6DIa9NSSxqtQvq0e3dy0ZhvhgY3EfPQSkOw=",
1111
"location": {
1212
"npm": {
1313
"filePath": "dist/bundle.js",

packages/snaps-cli/CHANGELOG.md

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

88
## [Unreleased]
99

10-
- Remove deprecated Browserify configuration ([#3313](https://github.com/MetaMask/snaps/pull/3313))
10+
## [7.0.0]
11+
12+
### Changed
13+
14+
- **BREAKING:** Remove deprecated Browserify configuration ([#3313](https://github.com/MetaMask/snaps/pull/3313))
1115
- The Browserify bundler is no longer supported. Snaps using the Browserify
1216
bundler will need to be migrated to the new configuration format based on
1317
Webpack.
@@ -346,7 +350,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
346350
- The version of the package no longer needs to match the version of all other
347351
MetaMask Snaps packages.
348352

349-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
353+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
354+
[7.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
350355
[6.7.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
351356
[6.6.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
352357
[6.6.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/snaps-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snaps-cli",
3-
"version": "6.7.0",
3+
"version": "7.0.0",
44
"description": "A CLI for developing MetaMask Snaps",
55
"keywords": [
66
"MetaMask",

packages/snaps-controllers/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+
## [11.2.1]
11+
12+
### Fixed
13+
14+
- Make comparision case sensitive in MultichainRouter ([#3310](https://github.com/MetaMask/snaps/pull/3310))
15+
1016
## [11.2.0]
1117

1218
### Added
@@ -703,7 +709,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
703709
- The version of the package no longer needs to match the version of all other
704710
MetaMask Snaps packages.
705711

706-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
712+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
713+
[11.2.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
707714
[11.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
708715
[11.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
709716
[11.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/snaps-controllers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snaps-controllers",
3-
"version": "11.2.0",
3+
"version": "11.2.1",
44
"description": "Controllers for MetaMask Snaps",
55
"keywords": [
66
"MetaMask",

packages/snaps-execution-environments/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+
## [7.2.1]
11+
1012
### Fixed
1113

1214
- Add missing `includeMarketData` param to `onAssetsConversion` handler ([#3323](https://github.com/MetaMask/snaps/pull/3323))
@@ -462,7 +464,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
462464
- The version of the package no longer needs to match the version of all other
463465
MetaMask Snaps packages.
464466

465-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
467+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
468+
[7.2.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
466469
[7.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
467470
[7.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
468471
[7.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

0 commit comments

Comments
 (0)