Skip to content

Commit

Permalink
Release 64.0.0 (#2709)
Browse files Browse the repository at this point in the history
This is the release candidate for version `64.0.0`. I've recreated this
from #2705, since the previous release failed.

---------

Co-authored-by: MetaMask Bot <metamaskbot@users.noreply.github.com>
  • Loading branch information
Mrtenz and metamaskbot authored Sep 11, 2024
1 parent 106482f commit de6fbb1
Show file tree
Hide file tree
Showing 120 changed files with 428 additions and 151 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "root",
"version": "63.0.0",
"version": "64.0.0",
"private": true,
"repository": {
"type": "git",
Expand Down
9 changes: 8 additions & 1 deletion packages/create-snap/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [4.0.3]
### Fixed
- Fix ESM version of the package ([#2682](https://github.com/MetaMask/snaps/pull/2682))
- This fixes the ESM version of the package to be fully compliant with the ESM
standard.

## [4.0.2]
### Fixed
- Fix detection of minimum Node.js version ([#2292](https://github.com/MetaMask/snaps/pull/2292))
Expand Down Expand Up @@ -63,7 +69,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The version of the package no longer needs to match the version of all other
MetaMask Snaps packages.

[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/create-snap@4.0.2...HEAD
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/create-snap@4.0.3...HEAD
[4.0.3]: https://github.com/MetaMask/snaps/compare/@metamask/create-snap@4.0.2...@metamask/create-snap@4.0.3
[4.0.2]: https://github.com/MetaMask/snaps/compare/@metamask/create-snap@4.0.1...@metamask/create-snap@4.0.2
[4.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/create-snap@4.0.0...@metamask/create-snap@4.0.1
[4.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/create-snap@3.1.1...@metamask/create-snap@4.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/create-snap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/create-snap",
"version": "4.0.2",
"version": "4.0.3",
"description": "A CLI for creating MetaMask Snaps.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/example-snaps",
"version": "3.8.0",
"version": "3.8.1",
"private": true,
"repository": {
"type": "git",
Expand Down
7 changes: 6 additions & 1 deletion packages/examples/packages/bip32/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.2.1]
### Fixed
- Bump MetaMask dependencies

## [2.2.0]
### Added
- Add support for `ed25519Bip32` to the BIP-32 example snap ([#2428](https://github.com/MetaMask/snaps/pull/2428))
Expand Down Expand Up @@ -51,7 +55,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The version of the package no longer needs to match the version of all other
MetaMask Snaps packages.

[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/bip32-example-snap@2.2.0...HEAD
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/bip32-example-snap@2.2.1...HEAD
[2.2.1]: https://github.com/MetaMask/snaps/compare/@metamask/bip32-example-snap@2.2.0...@metamask/bip32-example-snap@2.2.1
[2.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/bip32-example-snap@2.1.2...@metamask/bip32-example-snap@2.2.0
[2.1.2]: https://github.com/MetaMask/snaps/compare/@metamask/bip32-example-snap@2.1.1...@metamask/bip32-example-snap@2.1.2
[2.1.1]: https://github.com/MetaMask/snaps/compare/@metamask/bip32-example-snap@2.1.0...@metamask/bip32-example-snap@2.1.1
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/packages/bip32/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/bip32-example-snap",
"version": "2.2.0",
"version": "2.2.1",
"description": "MetaMask example snap demonstrating the use of `snap_getBip32Entropy`.",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/examples/packages/bip32/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"version": "2.2.0",
"version": "2.2.1",
"description": "MetaMask example snap demonstrating the use of `snap_getBip32Entropy`.",
"proposedName": "BIP-32 Example Snap",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "5o3Zg3/1/23XKZdIzzo1Sbwmp2uQNF1EpnzyLYqhfqo=",
"shasum": "PxNHa0ebJ1qA/LXiY4vTzUsBKNl3rdfbHwg198YtOH4=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down
7 changes: 6 additions & 1 deletion packages/examples/packages/bip44/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.1.3]
### Fixed
- Bump MetaMask dependencies

## [2.1.2]
### Changed
- Use error wrappers ([#2178](https://github.com/MetaMask/snaps/pull/2178))
Expand Down Expand Up @@ -52,7 +56,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The version of the package no longer needs to match the version of all other
MetaMask Snaps packages.

[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/bip44-example-snap@2.1.2...HEAD
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/bip44-example-snap@2.1.3...HEAD
[2.1.3]: https://github.com/MetaMask/snaps/compare/@metamask/bip44-example-snap@2.1.2...@metamask/bip44-example-snap@2.1.3
[2.1.2]: https://github.com/MetaMask/snaps/compare/@metamask/bip44-example-snap@2.1.1...@metamask/bip44-example-snap@2.1.2
[2.1.1]: https://github.com/MetaMask/snaps/compare/@metamask/bip44-example-snap@2.1.0...@metamask/bip44-example-snap@2.1.1
[2.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/bip44-example-snap@2.0.1...@metamask/bip44-example-snap@2.1.0
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/packages/bip44/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/bip44-example-snap",
"version": "2.1.2",
"version": "2.1.3",
"description": "MetaMask example snap demonstrating the use of `snap_getBip44Entropy`.",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/examples/packages/bip44/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"version": "2.1.2",
"version": "2.1.3",
"description": "MetaMask example snap demonstrating the use of `snap_getBip44Entropy`.",
"proposedName": "BIP-44 Example Snap",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "K0uZKIJkRUzXrIrbcNY/hjouFPSEVScyeJc0D5SvuIs=",
"shasum": "Nb4y6u121k+rnDRGblkG77S7s9IFt1TZTQeSZOXNdyY=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down
7 changes: 6 additions & 1 deletion packages/examples/packages/browserify-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.1.3]
### Fixed
- Bump MetaMask dependencies

## [2.1.2]
### Changed
- Use error wrappers ([#2178](https://github.com/MetaMask/snaps/pull/2178))
Expand Down Expand Up @@ -42,7 +46,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The version of the package no longer needs to match the version of all other
MetaMask Snaps packages.

[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/browserify-plugin-example-snap@2.1.2...HEAD
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/browserify-plugin-example-snap@2.1.3...HEAD
[2.1.3]: https://github.com/MetaMask/snaps/compare/@metamask/browserify-plugin-example-snap@2.1.2...@metamask/browserify-plugin-example-snap@2.1.3
[2.1.2]: https://github.com/MetaMask/snaps/compare/@metamask/browserify-plugin-example-snap@2.1.1...@metamask/browserify-plugin-example-snap@2.1.2
[2.1.1]: https://github.com/MetaMask/snaps/compare/@metamask/browserify-plugin-example-snap@2.1.0...@metamask/browserify-plugin-example-snap@2.1.1
[2.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/browserify-plugin-example-snap@2.0.1...@metamask/browserify-plugin-example-snap@2.1.0
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/packages/browserify-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/browserify-plugin-example-snap",
"version": "2.1.2",
"version": "2.1.3",
"description": "MetaMask example snap demonstrating how to use the Browserify plugin to bundle a snap.",
"repository": {
"type": "git",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"version": "2.1.2",
"version": "2.1.3",
"description": "MetaMask example snap demonstrating how to use the Browserify plugin to bundle a snap.",
"proposedName": "Browserify Plugin Example Snap",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "zjj26VuJEMPd17W0vAdpVONDt/JeYPacP5GwbRAiQZo=",
"shasum": "A3JhkncC8nBdzAEjqVa3RtSFRAGpaO+T0ABpCA0CKpM=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down
7 changes: 6 additions & 1 deletion packages/examples/packages/browserify/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.1.3]
### Fixed
- Bump MetaMask dependencies

## [2.1.2]
### Changed
- Use error wrappers ([#2178](https://github.com/MetaMask/snaps/pull/2178))
Expand Down Expand Up @@ -41,7 +45,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add Browserify example snap ([#1632](https://github.com/MetaMask/snaps/pull/1632))
- This snap demonstrates how to use the deprecated Browserify configuration format.

[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/browserify-example-snap@2.1.2...HEAD
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/browserify-example-snap@2.1.3...HEAD
[2.1.3]: https://github.com/MetaMask/snaps/compare/@metamask/browserify-example-snap@2.1.2...@metamask/browserify-example-snap@2.1.3
[2.1.2]: https://github.com/MetaMask/snaps/compare/@metamask/browserify-example-snap@2.1.1...@metamask/browserify-example-snap@2.1.2
[2.1.1]: https://github.com/MetaMask/snaps/compare/@metamask/browserify-example-snap@2.1.0...@metamask/browserify-example-snap@2.1.1
[2.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/browserify-example-snap@2.0.1...@metamask/browserify-example-snap@2.1.0
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/packages/browserify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/browserify-example-snap",
"version": "2.1.2",
"version": "2.1.3",
"description": "MetaMask example snap demonstrating how to use Browserify to bundle a snap.",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/examples/packages/browserify/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"version": "2.1.2",
"version": "2.1.3",
"description": "MetaMask example snap demonstrating how to use the Browserify plugin to bundle a snap.",
"proposedName": "Browserify Plugin Example Snap",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "WEO5ozYWnfy690WSCYKkexaQnlkDbks1f+vXrRVQRTM=",
"shasum": "I4QX3z8+PVtiPoI5o9VcKsb4rSI2kDC6DiS+ybY/ycA=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down
7 changes: 6 additions & 1 deletion packages/examples/packages/client-status/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.3]
### Fixed
- Bump MetaMask dependencies

## [1.0.2]
### Changed
- Use error wrappers ([#2178](https://github.com/MetaMask/snaps/pull/2178))
Expand All @@ -18,7 +22,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Add `snap_getClientStatus` example snap ([#2159](https://github.com/MetaMask/snaps/pull/2159))

[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/client-status-example-snap@1.0.2...HEAD
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/client-status-example-snap@1.0.3...HEAD
[1.0.3]: https://github.com/MetaMask/snaps/compare/@metamask/client-status-example-snap@1.0.2...@metamask/client-status-example-snap@1.0.3
[1.0.2]: https://github.com/MetaMask/snaps/compare/@metamask/client-status-example-snap@1.0.1...@metamask/client-status-example-snap@1.0.2
[1.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/client-status-example-snap@1.0.0...@metamask/client-status-example-snap@1.0.1
[1.0.0]: https://github.com/MetaMask/snaps/releases/tag/@metamask/client-status-example-snap@1.0.0
2 changes: 1 addition & 1 deletion packages/examples/packages/client-status/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/client-status-example-snap",
"version": "1.0.2",
"version": "1.0.3",
"description": "MetaMask example snap demonstrating the use of `snap_getClientStatus`.",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/examples/packages/client-status/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"version": "1.0.2",
"version": "1.0.3",
"description": "MetaMask example snap demonstrating the use of `snap_getClientStatus`",
"proposedName": "Client Status Example Snap",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "igAdAUtow5JI5MOgNqhdcqlpBo67XhupsT3Ns8tTbto=",
"shasum": "fyBeeuYGaIpBnxm6MVoRe19JR+8QiIeFtJM+nlOWnsU=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down
7 changes: 6 additions & 1 deletion packages/examples/packages/cronjobs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.1.4]
### Fixed
- Bump MetaMask dependencies

## [2.1.3]
### Changed
- Use error wrappers ([#2178](https://github.com/MetaMask/snaps/pull/2178))
Expand Down Expand Up @@ -51,7 +55,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The version of the package no longer needs to match the version of all other
MetaMask Snaps packages.

[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/cronjob-example-snap@2.1.3...HEAD
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/cronjob-example-snap@2.1.4...HEAD
[2.1.4]: https://github.com/MetaMask/snaps/compare/@metamask/cronjob-example-snap@2.1.3...@metamask/cronjob-example-snap@2.1.4
[2.1.3]: https://github.com/MetaMask/snaps/compare/@metamask/cronjob-example-snap@2.1.2...@metamask/cronjob-example-snap@2.1.3
[2.1.2]: https://github.com/MetaMask/snaps/compare/@metamask/cronjob-example-snap@2.1.1...@metamask/cronjob-example-snap@2.1.2
[2.1.1]: https://github.com/MetaMask/snaps/compare/@metamask/cronjob-example-snap@2.1.0...@metamask/cronjob-example-snap@2.1.1
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/packages/cronjobs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/cronjob-example-snap",
"version": "2.1.3",
"version": "2.1.4",
"description": "MetaMask example snap demonstrating the use of cronjobs in snaps.",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/examples/packages/cronjobs/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"version": "2.1.3",
"version": "2.1.4",
"description": "MetaMask example snap demonstrating the use of cronjobs in snaps.",
"proposedName": "Cronjob Example Snap",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "jcA6NL+j9BPrnOiv5FOl+KnTyxAJ5UdThThk4zCoiu8=",
"shasum": "52lYQY0bh6ZtKx4ZNtQNO17ustuhQBewko/WzQkS68A=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down
7 changes: 6 additions & 1 deletion packages/examples/packages/dialogs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.3.1]
### Fixed
- Bump MetaMask dependencies

## [2.3.0]
### Added
- Add support for fully custom dialogs ([#2526](https://github.com/MetaMask/snaps/pull/2526))
Expand Down Expand Up @@ -59,7 +63,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The version of the package no longer needs to match the version of all other
MetaMask Snaps packages.

[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/dialog-example-snap@2.3.0...HEAD
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/dialog-example-snap@2.3.1...HEAD
[2.3.1]: https://github.com/MetaMask/snaps/compare/@metamask/dialog-example-snap@2.3.0...@metamask/dialog-example-snap@2.3.1
[2.3.0]: https://github.com/MetaMask/snaps/compare/@metamask/dialog-example-snap@2.2.1...@metamask/dialog-example-snap@2.3.0
[2.2.1]: https://github.com/MetaMask/snaps/compare/@metamask/dialog-example-snap@2.2.0...@metamask/dialog-example-snap@2.2.1
[2.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/dialog-example-snap@2.1.0...@metamask/dialog-example-snap@2.2.0
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/packages/dialogs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/dialog-example-snap",
"version": "2.3.0",
"version": "2.3.1",
"description": "MetaMask example snap demonstrating the use of `snap_dialog`.",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/examples/packages/dialogs/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"version": "2.3.0",
"version": "2.3.1",
"description": "MetaMask example snap demonstrating the use of `snap_dialog`.",
"proposedName": "Dialog Example Snap",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "P+jpppDqo3e+Dsyk2KP+26NlKDyGwW+CxztRYiDkqnQ=",
"shasum": "v2oIs3UY5j/3dXW5eRh3rg7Tv5qcVzHon7qzPQeRsAE=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down
7 changes: 6 additions & 1 deletion packages/examples/packages/errors/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.1.3]
### Fixed
- Bump MetaMask dependencies

## [2.1.2]
### Changed
- Use error wrappers ([#2178](https://github.com/MetaMask/snaps/pull/2178))
Expand Down Expand Up @@ -50,7 +54,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The version of the package no longer needs to match the version of all other
MetaMask Snaps packages.

[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/error-example-snap@2.1.2...HEAD
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/error-example-snap@2.1.3...HEAD
[2.1.3]: https://github.com/MetaMask/snaps/compare/@metamask/error-example-snap@2.1.2...@metamask/error-example-snap@2.1.3
[2.1.2]: https://github.com/MetaMask/snaps/compare/@metamask/error-example-snap@2.1.1...@metamask/error-example-snap@2.1.2
[2.1.1]: https://github.com/MetaMask/snaps/compare/@metamask/error-example-snap@2.1.0...@metamask/error-example-snap@2.1.1
[2.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/error-example-snap@2.0.1...@metamask/error-example-snap@2.1.0
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/packages/errors/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/error-example-snap",
"version": "2.1.2",
"version": "2.1.3",
"description": "MetaMask example snap demonstrating the use of error handling in snaps.",
"repository": {
"type": "git",
Expand Down
Loading

0 comments on commit de6fbb1

Please sign in to comment.