Skip to content

Commit f1d3cd6

Browse files
Release 80.0.0 (#2928)
This is the release candidate for version 80.0.0.
1 parent 9c826e9 commit f1d3cd6

File tree

21 files changed

+94
-22
lines changed

21 files changed

+94
-22
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": "79.0.0",
3+
"version": "80.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.11.0",
3+
"version": "3.12.0",
44
"private": true,
55
"description": "A collection of examples demonstrating how to build MetaMask Snaps",
66
"keywords": [

packages/examples/packages/notifications/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.2.0]
11+
12+
### Changed
13+
14+
- Add link to notification example ([#2915](https://github.com/MetaMask/snaps/pull/2915))
15+
1016
## [2.1.4]
1117

1218
### Fixed
@@ -84,7 +90,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8490
- The version of the package no longer needs to match the version of all other
8591
MetaMask Snaps packages.
8692

87-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
93+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
94+
[2.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
8895
[2.1.4]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
8996
[2.1.3]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
9097
[2.1.2]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/examples/packages/notifications/package.json

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

packages/examples/packages/notifications/snap.manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"version": "2.1.4",
2+
"version": "2.2.0",
33
"description": "MetaMask example snap demonstrating the use of `snap_notify`.",
44
"proposedName": "Notifications Example Snap",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/MetaMask/snaps.git"
88
},
99
"source": {
10-
"shasum": "SELpk82JtBQolxOnwrXlAG8OCIfDSP8tc1j7FZzA5ps=",
10+
"shasum": "ZXgMRkK/FtEZlwVSdOC+dmP99tuBTqHx/2Mj/FNhzAg=",
1111
"location": {
1212
"npm": {
1313
"filePath": "dist/bundle.js",

packages/snaps-cli/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+
## [6.5.4]
11+
12+
### Fixed
13+
14+
- Bundle and initialize WASM modules using Base64 encoding ([#2913](https://github.com/MetaMask/snaps/pull/2913))
15+
1016
## [6.5.3]
1117

1218
### Fixed
@@ -288,7 +294,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
288294
- The version of the package no longer needs to match the version of all other
289295
MetaMask Snaps packages.
290296

291-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
297+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
298+
[6.5.4]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
292299
[6.5.3]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
293300
[6.5.2]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
294301
[6.5.1]: 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.5.3",
3+
"version": "6.5.4",
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+
## [9.15.0]
11+
12+
### Added
13+
14+
- Add `clientCryptography` property for specifying custom cryptography functions ([#2909](https://github.com/MetaMask/snaps/pull/2909))
15+
1016
## [9.14.0]
1117

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

577-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
583+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
584+
[9.15.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
578585
[9.14.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
579586
[9.13.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
580587
[9.12.0]: 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": "9.14.0",
3+
"version": "9.15.0",
44
"description": "Controllers for MetaMask Snaps",
55
"keywords": [
66
"MetaMask",

packages/snaps-jest/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+
## [8.8.1]
11+
12+
### Changed
13+
14+
- Bump `@metamask/key-tree` from `^9.1.2` to `^10.0.1` ([#2909](https://github.com/MetaMask/snaps/pull/2909))
15+
1016
## [8.8.0]
1117

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

303-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
309+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
310+
[8.8.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
304311
[8.8.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
305312
[8.7.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
306313
[8.7.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

0 commit comments

Comments
 (0)