Skip to content

Commit

Permalink
0.3.1 (#102)
Browse files Browse the repository at this point in the history
* 0.3.1

* chore: update changelog

* chore: update snap hash

---------

Co-authored-by: github-actions <[email protected]>
Co-authored-by: Daniel Rocha <[email protected]>
  • Loading branch information
3 people authored Oct 11, 2023
1 parent 0cc3591 commit 4c585d7
Show file tree
Hide file tree
Showing 7 changed files with 71 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ jobs:
- run: yarn lint
- name: Validate RC changelog
if: ${{ startsWith(github.head_ref, 'release/') }}
run: yarn workspaces foreach --parallel --topological --verbose run auto-changelog validate --rc
run: yarn workspaces foreach --parallel --topological --verbose run auto-changelog validate --prettier --rc
- name: Validate changelog
if: ${{ !startsWith(github.head_ref, 'release/') }}
run: yarn workspaces foreach --parallel --topological --verbose run auto-changelog validate
run: yarn workspaces foreach --parallel --topological --verbose run auto-changelog validate --prettier
- name: Require clean working directory
shell: bash
run: |
Expand Down
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": "0.3.0",
"version": "0.3.1",
"private": true,
"description": "A simple keyring snap that integrates with MetaMask accounts.",
"keywords": [
Expand Down
37 changes: 36 additions & 1 deletion packages/site/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,83 +1,118 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.3.1]

### Changed

- Allow Snap to be installed in MetaMask Stable ([#101](https://github.com/MetaMask/snap-simple-keyring/pull/101)).

## [0.3.0]

### Changed

- **BREAKING:** Use `onKeyringRequest` to handle keyring methods ([#97](https://github.com/MetaMask/snap-simple-keyring/pull/97)).

## [0.2.4]

### Added

- Add update button ([#93](https://github.com/MetaMask/snap-simple-keyring/pull/93)).

### Fixed

- Fix the list of accounts not being displayed on the first load ([#92](https://github.com/MetaMask/snap-simple-keyring/pull/92)).
- Fix the private key format in the import account placeholder ([#89](https://github.com/MetaMask/snap-simple-keyring/pull/89)).
- Check if the snap is installed before trying to get its state ([#87](https://github.com/MetaMask/snap-simple-keyring/pull/87)).
- Remove `console.log` if snap is not installed ([#88](https://github.com/MetaMask/snap-simple-keyring/pull/88)).

## [0.2.3]

### Changed

- Use text fields in account methods inputs ([#82](https://github.com/MetaMask/snap-simple-keyring/pull/82)).
- Update linting targets ([#85](https://github.com/MetaMask/snap-simple-keyring/pull/85)).
- Update Gatsby to version 5 ([#83](https://github.com/MetaMask/snap-simple-keyring/pull/83)).
- Enable linters and fix errors ([#81](https://github.com/MetaMask/snap-simple-keyring/pull/81)).

### Fixed

- Serve self-hosted fonts ([#80](https://github.com/MetaMask/snap-simple-keyring/pull/80)).

## [0.2.2]

### Added

- Let the dapp specifies the Snap version to install ([#72](https://github.com/MetaMask/snap-simple-keyring/pull/72)).
- Add dapp version to header ([#71](https://github.com/MetaMask/snap-simple-keyring/pull/71)).

### Fixed

- Disable async-sync toggle if snap is not installed ([#77](https://github.com/MetaMask/snap-simple-keyring/pull/77)).

## [0.2.1]

### Changed

- Align button and request result with action name ([#66](https://github.com/MetaMask/snap-simple-keyring/pull/66)).
- Remove account name and improve some UI components ([#65](https://github.com/MetaMask/snap-simple-keyring/pull/65)).
- Migrate to new `keyring-api` version (0.2.x) ([#64](https://github.com/MetaMask/snap-simple-keyring/pull/64)).
- Polyfill crypto dependency introduced in `metamask-utils` 6.2.0 ([#62](https://github.com/MetaMask/snap-simple-keyring/pull/62)).

## [0.2.0]

### Added

- Support the async approval flow ([#50](https://github.com/MetaMask/snap-simple-keyring/pull/50)).
- Import account ([#58](https://github.com/MetaMask/snap-simple-keyring/pull/58)).

### Changed

- Improve UI/UX ([#54](https://github.com/MetaMask/snap-simple-keyring/pull/54)).

### Fixed

- Now you don't have to change your `defaultSnapOrigin` ([#59](https://github.com/MetaMask/snap-simple-keyring/pull/59)).

## [0.1.4]

### Fixed

- Fix `rejectRequest` call in site package ([#53](https://github.com/MetaMask/snap-simple-keyring/pull/53)).

## [0.1.3]

### Changed

- No changes in this release.

## [0.1.2]

### Changed

- Update snaps and API dependencies. ([#41](https://github.com/MetaMask/snap-simple-keyring/pull/41)).
- Add IDs for e2e tests. ([#40](https://github.com/MetaMask/snap-simple-keyring/pull/40)).

## [0.1.1] - 2023-06-23

### Changed

- No changes in this release.

## [0.1.0] - 2023-06-22

### Added

- Initial release.

[Unreleased]: https://github.com/MetaMask/snap-simple-keyring/compare/v0.3.0...HEAD
[Unreleased]: https://github.com/MetaMask/snap-simple-keyring/compare/v0.3.1...HEAD
[0.3.1]: https://github.com/MetaMask/snap-simple-keyring/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/MetaMask/snap-simple-keyring/compare/v0.2.4...v0.3.0
[0.2.4]: https://github.com/MetaMask/snap-simple-keyring/compare/v0.2.3...v0.2.4
[0.2.3]: https://github.com/MetaMask/snap-simple-keyring/compare/v0.2.2...v0.2.3
Expand Down
2 changes: 1 addition & 1 deletion packages/site/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/snap-simple-keyring-site",
"version": "0.3.0",
"version": "0.3.1",
"private": true,
"license": "(MIT-0 OR Apache-2.0)",
"scripts": {
Expand Down
29 changes: 28 additions & 1 deletion packages/snap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,66 +1,93 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.3.1]

## [0.3.0]

### Changed

- **BREAKING:** Use `onKeyringRequest` to handle keyring methods ([#97](https://github.com/MetaMask/snap-simple-keyring/pull/97)).

## [0.2.4]

### Fixed

- Fix Snap and Extension are out of sync when creating/removing account ([#95](https://github.com/MetaMask/snap-simple-keyring/pull/95)).
- Remove private key from options after generating key pair ([#90](https://github.com/MetaMask/snap-simple-keyring/pull/90)).

## [0.2.3]

### Changed

- Update linting targets ([#85](https://github.com/MetaMask/snap-simple-keyring/pull/85)).
- Update Gatsby to version 5 ([#83](https://github.com/MetaMask/snap-simple-keyring/pull/83)).
- Enable linters and fix errors ([#81](https://github.com/MetaMask/snap-simple-keyring/pull/81)).

## [0.2.2]

### Fixed

- Persist snap state after switching between sync <-> async ([#76](https://github.com/MetaMask/snap-simple-keyring/pull/76)).

## [0.2.1]

### Changed

- Migrate to new `keyring-api` version (0.2.x) ([#64](https://github.com/MetaMask/snap-simple-keyring/pull/64)).
- Polyfill crypto dependency introduced in `metamask-utils` 6.2.0 ([#62](https://github.com/MetaMask/snap-simple-keyring/pull/62)).

## [0.2.0]

### Added

- Support the async approval flow ([#50](https://github.com/MetaMask/snap-simple-keyring/pull/50)).
- Import account ([#58](https://github.com/MetaMask/snap-simple-keyring/pull/58)).

## [0.1.4]

### Changed

- Bump `@metamask/snaps-cli` to `v0.38.2-flask.1` ([#55](https://github.com/MetaMask/snap-simple-keyring/pull/55)).

## [0.1.3]

### Fixed

- Fix address checksum and account update order. ([#44](https://github.com/MetaMask/snap-simple-keyring/pull/44)).
- Fix unique name during account creation. ([#43](https://github.com/MetaMask/snap-simple-keyring/pull/43)).

## [0.1.2]

### Changed

- Update snaps and API dependencies. ([#41](https://github.com/MetaMask/snap-simple-keyring/pull/41)).
- Add IDs for e2e tests. ([#40](https://github.com/MetaMask/snap-simple-keyring/pull/40)).

## [0.1.1] - 2023-06-23

### Changed

- Update snap's `README.md` ([#37](https://github.com/MetaMask/snap-simple-keyring/pull/37)).

### Fixed

- Allow calls from `https://metamask.github.io` to the snap. ([#36](https://github.com/MetaMask/snap-simple-keyring/pull/36)).

## [0.1.0] - 2023-06-22

### Added

- Initial release.

[Unreleased]: https://github.com/MetaMask/snap-simple-keyring/compare/v0.3.0...HEAD
[Unreleased]: https://github.com/MetaMask/snap-simple-keyring/compare/v0.3.1...HEAD
[0.3.1]: https://github.com/MetaMask/snap-simple-keyring/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/MetaMask/snap-simple-keyring/compare/v0.2.4...v0.3.0
[0.2.4]: https://github.com/MetaMask/snap-simple-keyring/compare/v0.2.3...v0.2.4
[0.2.3]: https://github.com/MetaMask/snap-simple-keyring/compare/v0.2.2...v0.2.3
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": "0.3.0",
"version": "0.3.1",
"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": "0.3.0",
"version": "0.3.1",
"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": "D5e0rnba5O/HqWtNgBbvgu8Q6VSZQTnCLUqBLQEdhtg=",
"shasum": "kssvsXB8L+oEb/NqBxaTcTcHW8vvz+XBFJXXuaj3FW0=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down

0 comments on commit 4c585d7

Please sign in to comment.