@metamask/polling-controller 6.0.0 → 6.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -1
  2. package/package.json +5 -5
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
+ ## [6.0.1]
11
+
12
+ ### Fixed
13
+
14
+ - Fix `types` field in `package.json` ([#4047](https://github.com/MetaMask/core/pull/4047))
15
+
10
16
  ## [6.0.0]
11
17
 
12
18
  ### Added
@@ -109,7 +115,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
109
115
 
110
116
  - Initial release
111
117
 
112
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/polling-controller@6.0.0...HEAD
118
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/polling-controller@6.0.1...HEAD
119
+ [6.0.1]: https://github.com/MetaMask/core/compare/@metamask/polling-controller@6.0.0...@metamask/polling-controller@6.0.1
113
120
  [6.0.0]: https://github.com/MetaMask/core/compare/@metamask/polling-controller@5.0.1...@metamask/polling-controller@6.0.0
114
121
  [5.0.1]: https://github.com/MetaMask/core/compare/@metamask/polling-controller@5.0.0...@metamask/polling-controller@5.0.1
115
122
  [5.0.0]: https://github.com/MetaMask/core/compare/@metamask/polling-controller@4.0.0...@metamask/polling-controller@5.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/polling-controller",
3
- "version": "6.0.0",
3
+ "version": "6.0.1",
4
4
  "description": "Polling Controller is the base for controllers that polling by networkClientId",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -25,7 +25,7 @@
25
25
  "./package.json": "./package.json"
26
26
  },
27
27
  "main": "./dist/index.js",
28
- "types": "./dist/index.d.ts",
28
+ "types": "./dist/types/index.d.ts",
29
29
  "files": [
30
30
  "dist/"
31
31
  ],
@@ -41,9 +41,9 @@
41
41
  "test:watch": "jest --watch"
42
42
  },
43
43
  "dependencies": {
44
- "@metamask/base-controller": "^5.0.0",
45
- "@metamask/controller-utils": "^9.0.0",
46
- "@metamask/network-controller": "^18.0.0",
44
+ "@metamask/base-controller": "^5.0.1",
45
+ "@metamask/controller-utils": "^9.0.1",
46
+ "@metamask/network-controller": "^18.0.1",
47
47
  "@metamask/utils": "^8.3.0",
48
48
  "@types/uuid": "^8.3.0",
49
49
  "fast-json-stable-stringify": "^2.1.0",