Skip to content

Commit b5ddf44

Browse files
github-actions[bot]github-actionsPrithpal-Sooriya
authored
0.6.0 (#89)
This is the release candidate for version 0.6.0. --------- Co-authored-by: github-actions <github-actions@github.com> Co-authored-by: Prithpal Sooriya <prithpal.sooriya@consensys.net>
1 parent b2a2b3a commit b5ddf44

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.6.0]
11+
12+
### Changed
13+
14+
- refactor: move all `dependencies` to `devDependencies` ([#88](https://github.com/MetaMask/message-signing-snap/pull/88))
15+
- 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
16+
1017
## [0.5.0]
1118

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

60-
[Unreleased]: https://github.com/MetaMask/message-signing-snap/compare/v0.5.0...HEAD
67+
[Unreleased]: https://github.com/MetaMask/message-signing-snap/compare/v0.6.0...HEAD
68+
[0.6.0]: https://github.com/MetaMask/message-signing-snap/compare/v0.5.0...v0.6.0
6169
[0.5.0]: https://github.com/MetaMask/message-signing-snap/compare/v0.4.0...v0.5.0
6270
[0.4.0]: https://github.com/MetaMask/message-signing-snap/compare/v0.3.3...v0.4.0
6371
[0.3.3]: https://github.com/MetaMask/message-signing-snap/compare/v0.3.2...v0.3.3

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/message-signing-snap",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "Provide automatic message signing (no user interaction) using a pseudo randomly generated private key",
55
"homepage": "https://github.com/MetaMask/message-signing-snap#readme",
66
"bugs": {

snap.manifest.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"version": "0.5.0",
2+
"version": "0.6.0",
33
"description": "Provides public key and message signing used for signing in with MetaMask",
44
"proposedName": "Sign in with MetaMask",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/MetaMask/message-signing-snap.git"
88
},
99
"source": {
10-
"shasum": "JlkOWSybLGep70KCqnBrpExgwtvYmDFI2seTQgWhplU=",
10+
"shasum": "MVxPWtAZ1Sdw63kwfZswKlYQ6dddnr7vvbj4V7j/Fc4=",
1111
"location": {
1212
"npm": {
1313
"filePath": "dist/bundle.js",

0 commit comments

Comments
 (0)