Skip to content

Commit 811e973

Browse files
Release 62.0.0 (#2629)
This is the release candidate for version 62.0.0. Small release that includes some minor fixes for the previous releases.
1 parent 16146f8 commit 811e973

File tree

10 files changed

+21
-11
lines changed

10 files changed

+21
-11
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "root",
3-
"version": "61.0.0",
3+
"version": "62.0.0",
44
"private": true,
55
"repository": {
66
"type": "git",

packages/examples/packages/dialogs/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [2.3.0]
1010
### Added
11-
- Add support for fully custom dialogs ([#2526](https://github.com/MetaMask/snaps-skunkworks.git/pull/2526))
11+
- Add support for fully custom dialogs ([#2526](https://github.com/MetaMask/snaps/pull/2526))
1212

1313
## [2.2.1]
1414
### Changed

packages/examples/packages/interactive-ui/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [2.2.0]
1010
### Added
11-
- Add `RadioButton` to interactive UI example ([#2592](https://github.com/MetaMask/snaps-skunkworks.git/pull/2592))
11+
- Add `RadioGroup` to interactive UI example ([#2592](https://github.com/MetaMask/snaps/pull/2592))
1212

1313
## [2.1.0]
1414
### Added

packages/snaps-controllers/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [9.4.0]
1010
### Added
11-
- Add `RadioButton` component ([#2592](https://github.com/MetaMask/snaps/pull/2592))
11+
- Add `RadioGroup` component ([#2592](https://github.com/MetaMask/snaps/pull/2592))
1212

1313
### Changed
1414
- Persist `severity` property in `SnapInsightsController` ([#2612](https://github.com/MetaMask/snaps/pull/2612))

packages/snaps-jest/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
## [8.3.0]
1010
### Added
1111
- Add support for `snap_getPreferences` ([#2607](https://github.com/MetaMask/snaps/pull/2607))
12-
- Add `RadioButton` component ([#2592](https://github.com/MetaMask/snaps/pull/2592))
12+
- Add `RadioGroup` component ([#2592](https://github.com/MetaMask/snaps/pull/2592))
1313
- Add support for custom dialogs in `snaps-jest` ([#2526](https://github.com/MetaMask/snaps/pull/2526), [#2509](https://github.com/MetaMask/snaps/pull/2509))
1414

1515
### Changed

packages/snaps-sdk/CHANGELOG.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [6.2.1]
10+
### Fixed
11+
- Add structs to `typedUnion` schema ([#2623](https://github.com/MetaMask/snaps/pull/2623))
12+
913
## [6.2.0]
1014
### Added
1115
- Add `snap_getPreferences` ([#2607](https://github.com/MetaMask/snaps/pull/2607))
12-
- Add `RadioButton` component ([#2592](https://github.com/MetaMask/snaps/pull/2592))
16+
- Add `RadioGroup` component ([#2592](https://github.com/MetaMask/snaps/pull/2592))
1317

1418
## [6.1.1]
1519
### Changed
@@ -211,7 +215,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
211215
### Added
212216
- Initial release of this package.
213217

214-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
218+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
219+
[6.2.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
215220
[6.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
216221
[6.1.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
217222
[6.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/snaps-sdk/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snaps-sdk",
3-
"version": "6.2.0",
3+
"version": "6.2.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/MetaMask/snaps.git"

packages/snaps-utils/CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [8.0.1]
10+
### Changed
11+
- Bump `@metamask/slip44` to 4.0.0 ([#2624](https://github.com/MetaMask/snaps/pull/2624))
12+
913
## [8.0.0]
1014
### Changed
1115
- **BREAKING:** Improve manifest validation output ([#2605](https://github.com/MetaMask/snaps/pull/2605), [#2572](https://github.com/MetaMask/snaps/pull/2572))
@@ -293,7 +297,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
293297
- The version of the package no longer needs to match the version of all other
294298
MetaMask Snaps packages.
295299

296-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
300+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
301+
[8.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
297302
[8.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
298303
[7.8.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
299304
[7.8.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/snaps-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snaps-utils",
3-
"version": "8.0.0",
3+
"version": "8.0.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/MetaMask/snaps.git"

packages/test-snaps/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [2.12.0]
1010
### Added
11-
- Add `Custom` button to the dialog example snap in `test-snaps` ([#2618](https://github.com/MetaMask/snaps-skunkworks.git/pull/2618))
11+
- Add `Custom` button to the dialog example snap in `test-snaps` ([#2618](https://github.com/MetaMask/snaps/pull/2618))
1212

1313
## [2.11.0]
1414
### Changed

0 commit comments

Comments
 (0)