@metamask/utils 3.0.0 → 3.0.1
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 +6 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [3.0.1]
|
|
10
|
+
### Fixed
|
|
11
|
+
- Promote `@types/debug` from development dependencies to production dependencies ([#23](https://github.com/MetaMask/utils/pull/23))
|
|
12
|
+
|
|
9
13
|
## [3.0.0]
|
|
10
14
|
### Added
|
|
11
15
|
- Add logging functions ([#20](https://github.com/MetaMask/utils/pull/20))
|
|
@@ -50,7 +54,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
50
54
|
### Added
|
|
51
55
|
- Initial release
|
|
52
56
|
|
|
53
|
-
[Unreleased]: https://github.com/MetaMask/utils/compare/v3.0.
|
|
57
|
+
[Unreleased]: https://github.com/MetaMask/utils/compare/v3.0.1...HEAD
|
|
58
|
+
[3.0.1]: https://github.com/MetaMask/utils/compare/v3.0.0...v3.0.1
|
|
54
59
|
[3.0.0]: https://github.com/MetaMask/utils/compare/v2.1.0...v3.0.0
|
|
55
60
|
[2.1.0]: https://github.com/MetaMask/utils/compare/v2.0.0...v2.1.0
|
|
56
61
|
[2.0.0]: https://github.com/MetaMask/utils/compare/v1.0.0...v2.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/utils",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "Various JavaScript/TypeScript utilities of wide relevance to the MetaMask codebase.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"docs:publish": "typedoc --cleanOutputDir false --gitRevision \"v$(jq -r .version < ./package.json)\""
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
+
"@types/debug": "^4.1.7",
|
|
30
31
|
"debug": "^4.3.4",
|
|
31
32
|
"fast-deep-equal": "^3.1.3",
|
|
32
33
|
"superstruct": "^0.16.0"
|
|
@@ -38,7 +39,6 @@
|
|
|
38
39
|
"@metamask/eslint-config-jest": "^9.0.0",
|
|
39
40
|
"@metamask/eslint-config-nodejs": "^9.0.0",
|
|
40
41
|
"@metamask/eslint-config-typescript": "^9.0.1",
|
|
41
|
-
"@types/debug": "^4.1.7",
|
|
42
42
|
"@types/jest": "^28.1.7",
|
|
43
43
|
"@typescript-eslint/eslint-plugin": "^4.21.0",
|
|
44
44
|
"@typescript-eslint/parser": "^4.21.0",
|