@metamask/delegation-deployments 0.9.0 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -1
- package/package.json +2 -4
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.10.0]
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Move auto-changelog to dev dependency ([#581](https://github.com/MetaMask/delegator-sdk/pull/581))
|
|
15
|
+
|
|
10
16
|
## [0.9.0]
|
|
11
17
|
|
|
12
18
|
### Added
|
|
@@ -19,5 +25,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
19
25
|
- Move validation script to delegation deployments and make it manual ([#550](https://github.com/MetaMask/delegator-sdk/pull/550))
|
|
20
26
|
- Rename package from `@metamask-private/delegation-deployments` to `@metamask/delegation-deployments` ([#537](https://github.com/MetaMask/delegator-sdk/pull/537))
|
|
21
27
|
|
|
22
|
-
[Unreleased]: https://github.com/MetaMask/delegator-sdk/compare/@metamask/delegation-deployments@0.
|
|
28
|
+
[Unreleased]: https://github.com/MetaMask/delegator-sdk/compare/@metamask/delegation-deployments@0.10.0...HEAD
|
|
29
|
+
[0.10.0]: https://github.com/MetaMask/delegator-sdk/compare/@metamask/delegation-deployments@0.9.0...@metamask/delegation-deployments@0.10.0
|
|
23
30
|
[0.9.0]: https://github.com/MetaMask/delegator-sdk/releases/tag/@metamask/delegation-deployments@0.9.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/delegation-deployments",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "A history of deployments of the Delegation Framework.",
|
|
5
5
|
"license": "(MIT-0 OR Apache-2.0)",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -21,11 +21,9 @@
|
|
|
21
21
|
"registry": "https://registry.npmjs.org/"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
+
"@metamask/auto-changelog": "^3.4.4",
|
|
24
25
|
"compare-versions": "^6.1.1",
|
|
25
26
|
"tsup": "^7.2.0",
|
|
26
27
|
"typescript": "5.0.4"
|
|
27
|
-
},
|
|
28
|
-
"dependencies": {
|
|
29
|
-
"@metamask/auto-changelog": "^3.4.4"
|
|
30
28
|
}
|
|
31
29
|
}
|