Skip to content

Commit

Permalink
0.6.0 (#89)
Browse files Browse the repository at this point in the history
This is the release candidate for version 0.6.0.

---------

Co-authored-by: github-actions <[email protected]>
Co-authored-by: Prithpal Sooriya <[email protected]>
  • Loading branch information
3 people authored Dec 3, 2024
1 parent b2a2b3a commit b5ddf44
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.0]

### Changed

- refactor: move all `dependencies` to `devDependencies` ([#88](https://github.com/MetaMask/message-signing-snap/pull/88))
- Since this is a preinstalled Snap, anything added to dependencies will end up in the client (extension and mobile) dependency-tree. Since Snaps bundle all of the dependencies required at runtime into one bundle.js file, these dependencies aren't used at runtime. Thus, we might as well reduce the size of the dependency-tree by moving the dependencies to be devDeps. This will ultimately help with the client node_modules sizing and dependency management

## [0.5.0]

### Added
Expand Down Expand Up @@ -57,7 +64,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- JSON-RPC docs & README.
- Update Snap Icon ([#1](https://github.com/MetaMask/message-signing-snap/pull/1))

[Unreleased]: https://github.com/MetaMask/message-signing-snap/compare/v0.5.0...HEAD
[Unreleased]: https://github.com/MetaMask/message-signing-snap/compare/v0.6.0...HEAD
[0.6.0]: https://github.com/MetaMask/message-signing-snap/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/MetaMask/message-signing-snap/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/MetaMask/message-signing-snap/compare/v0.3.3...v0.4.0
[0.3.3]: https://github.com/MetaMask/message-signing-snap/compare/v0.3.2...v0.3.3
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/message-signing-snap",
"version": "0.5.0",
"version": "0.6.0",
"description": "Provide automatic message signing (no user interaction) using a pseudo randomly generated private key",
"homepage": "https://github.com/MetaMask/message-signing-snap#readme",
"bugs": {
Expand Down
4 changes: 2 additions & 2 deletions snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"version": "0.5.0",
"version": "0.6.0",
"description": "Provides public key and message signing used for signing in with MetaMask",
"proposedName": "Sign in with MetaMask",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/message-signing-snap.git"
},
"source": {
"shasum": "JlkOWSybLGep70KCqnBrpExgwtvYmDFI2seTQgWhplU=",
"shasum": "MVxPWtAZ1Sdw63kwfZswKlYQ6dddnr7vvbj4V7j/Fc4=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down

0 comments on commit b5ddf44

Please sign in to comment.