Skip to content
Merged

2.1.0 #177

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/snap-simple-keyring",
"version": "2.0.1",
"version": "2.1.0",
"private": true,
"description": "A simple keyring snap that integrates with MetaMask accounts.",
"keywords": [
Expand Down
9 changes: 6 additions & 3 deletions packages/snap/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.1.0]

### Added

- Implement `keyring_setSelectedAccounts` and `keyring_resolveAccountAddress` ([#163](https://github.com/MetaMask/snap-simple-keyring/pull/163))
- Implement `keyring_setSelectedAccounts` and `keyring_resolveAccountAddress` ([#176](https://github.com/MetaMask/snap-simple-keyring/pull/176))
- Required for compatibility with `@metamask/eth-snap-keyring@^22`, which invokes these methods when MetaMask switches the active account or needs to resolve the signer for a request.
- Allow the `metamask` origin to call `keyring_createAccount`, `keyring_resolveAccountAddress`, and `keyring_setSelectedAccounts` ([#163](https://github.com/MetaMask/snap-simple-keyring/pull/163))
- Allow the `metamask` origin to call `keyring_createAccount`, `keyring_resolveAccountAddress`, and `keyring_setSelectedAccounts` ([#176](https://github.com/MetaMask/snap-simple-keyring/pull/176))

## [2.0.1]

Expand Down Expand Up @@ -182,7 +184,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release.

[Unreleased]: https://github.com/MetaMask/snap-simple-keyring/compare/v2.0.1...HEAD
[Unreleased]: https://github.com/MetaMask/snap-simple-keyring/compare/v2.1.0...HEAD
[2.1.0]: https://github.com/MetaMask/snap-simple-keyring/compare/v2.0.1...v2.1.0
[2.0.1]: https://github.com/MetaMask/snap-simple-keyring/compare/v2.0.0...v2.0.1
[2.0.0]: https://github.com/MetaMask/snap-simple-keyring/compare/v1.1.6...v2.0.0
[1.1.6]: https://github.com/MetaMask/snap-simple-keyring/compare/v1.1.5...v1.1.6
Expand Down
2 changes: 1 addition & 1 deletion packages/snap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/snap-simple-keyring-snap",
"version": "2.0.1",
"version": "2.1.0",
"description": "A simple keyring snap that integrates with MetaMask accounts.",
"keywords": [
"metamask",
Expand Down
4 changes: 2 additions & 2 deletions packages/snap/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"version": "2.0.1",
"version": "2.1.0",
"description": "An example of a key management snap for a simple keyring.",
"proposedName": "MetaMask Simple Snap Keyring",
"repository": {
"type": "git",
"url": "git+https://github.com/MetaMask/snap-simple-keyring.git"
},
"source": {
"shasum": "GOVQr60E+i51GtXbwdaFzHmBrDKxwBVoDKUICf6V8HI=",
"shasum": "V1nc4Dr3tA6lrG2DKSmEzecmlFXsny+wcxz2SmVfJyY=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down
Loading