Skip to content

Commit e8633e9

Browse files
authored
release: 121.0.0 (#3549)
This is the release candidate for version 121.0.0.
1 parent 69ad505 commit e8633e9

File tree

15 files changed

+62
-16
lines changed

15 files changed

+62
-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": "120.0.0",
3+
"version": "121.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.25.0",
3+
"version": "3.26.0",
44
"private": true,
55
"description": "A collection of examples demonstrating how to build MetaMask Snaps",
66
"keywords": [

packages/examples/packages/preinstalled/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+
## [0.7.0]
11+
12+
### Added
13+
14+
- Add `trackEvent` method for testing `snap_trackEvent` ([#3546](https://github.com/MetaMask/snaps/pull/3546))
15+
1016
## [0.6.0]
1117

1218
### Added
@@ -43,7 +49,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4349

4450
- Add preinstalled example Snap ([#2721](https://github.com/MetaMask/snaps/pull/2721))
4551

46-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
52+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
53+
[0.7.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
4754
[0.6.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
4855
[0.5.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
4956
[0.4.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/examples/packages/preinstalled/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/preinstalled-example-snap",
3-
"version": "0.6.0",
3+
"version": "0.7.0",
44
"description": "MetaMask example snap demonstrating preinstalled Snaps",
55
"keywords": [
66
"MetaMask",

packages/examples/packages/preinstalled/snap.manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"version": "0.6.0",
2+
"version": "0.7.0",
33
"description": "MetaMask example snap demonstrating preinstalled Snaps.",
44
"proposedName": "Preinstalled Example Snap",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/MetaMask/snaps.git"
88
},
99
"source": {
10-
"shasum": "3ngRXZHVyqZB3sk6u9Hpj2V4SUjrhxb6D/aqesFSmeY=",
10+
"shasum": "xmfFqEJcCOjmDhyDwZHnT8SQ97XMfub4Glk8FhXB41A=",
1111
"location": {
1212
"npm": {
1313
"filePath": "dist/bundle.js",

packages/snaps-jest/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [9.4.0]
11+
12+
### Added
13+
14+
- Add support for `snap_startTrace` and `snap_endTrace` ([#3547](https://github.com/MetaMask/snaps/pull/3547))
15+
- Add support for `snap_trackError` ([#3546](https://github.com/MetaMask/snaps/pull/3546))
16+
- Add support for `snap_trackEvent` ([#3546](https://github.com/MetaMask/snaps/pull/3546))
17+
1018
## [9.3.0]
1119

1220
### Added
@@ -403,7 +411,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
403411
- The version of the package no longer needs to match the version of all other
404412
MetaMask Snaps packages.
405413

406-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
414+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
415+
[9.4.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
407416
[9.3.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
408417
[9.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
409418
[9.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/snaps-jest/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-jest",
3-
"version": "9.3.0",
3+
"version": "9.4.0",
44
"description": "A Jest preset for end-to-end testing MetaMask Snaps, including a Jest environment, and a set of Jest matchers",
55
"keywords": [
66
"MetaMask",

packages/snaps-rpc-methods/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+
## [13.5.0]
11+
12+
### Changed
13+
14+
- Use `TrackableErrorStruct` from `@metamask/snaps-utils` ([#3546](https://github.com/MetaMask/snaps/pull/3546))
15+
1016
## [13.4.0]
1117

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

490-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
496+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
497+
[13.5.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
491498
[13.4.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
492499
[13.3.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
493500
[13.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/snaps-rpc-methods/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-rpc-methods",
3-
"version": "13.4.0",
3+
"version": "13.5.0",
44
"description": "MetaMask Snaps JSON-RPC method implementations",
55
"keywords": [
66
"MetaMask",

packages/snaps-simulation/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [3.4.0]
11+
12+
### Added
13+
14+
- Add support for `snap_startTrace` and `snap_endTrace` ([#3547](https://github.com/MetaMask/snaps/pull/3547))
15+
- Add support for `snap_trackError` ([#3546](https://github.com/MetaMask/snaps/pull/3546))
16+
- Add support for `snap_trackEvent` ([#3546](https://github.com/MetaMask/snaps/pull/3546))
17+
1018
## [3.3.0]
1119

1220
### Added
@@ -196,7 +204,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
196204

197205
- Initial release of `@metamask/snaps-simulation` package ([#2727](https://github.com/MetaMask/snaps/pull/2727))
198206

199-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
207+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
208+
[3.4.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
200209
[3.3.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
201210
[3.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
202211
[3.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

0 commit comments

Comments
 (0)