@metamask/gas-fee-controller 14.0.0 → 14.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 +6 -6
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
+ ## [14.0.1]
11
+
12
+ ### Fixed
13
+
14
+ - Fix `types` field in `package.json` ([#4047](https://github.com/MetaMask/core/pull/4047))
15
+
10
16
  ## [14.0.0]
11
17
 
12
18
  ### Added
@@ -232,7 +238,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
232
238
 
233
239
  All changes listed after this point were applied to this package following the monorepo conversion.
234
240
 
235
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@14.0.0...HEAD
241
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@14.0.1...HEAD
242
+ [14.0.1]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@14.0.0...@metamask/gas-fee-controller@14.0.1
236
243
  [14.0.0]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@13.0.2...@metamask/gas-fee-controller@14.0.0
237
244
  [13.0.2]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@13.0.1...@metamask/gas-fee-controller@13.0.2
238
245
  [13.0.1]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@13.0.0...@metamask/gas-fee-controller@13.0.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/gas-fee-controller",
3
- "version": "14.0.0",
3
+ "version": "14.0.1",
4
4
  "description": "Periodically calculates gas fee estimates based on various gas limits as well as other data displayed on transaction confirm screens",
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,12 +41,12 @@
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",
44
+ "@metamask/base-controller": "^5.0.1",
45
+ "@metamask/controller-utils": "^9.0.1",
46
46
  "@metamask/eth-query": "^4.0.0",
47
47
  "@metamask/ethjs-unit": "^0.3.0",
48
- "@metamask/network-controller": "^18.0.0",
49
- "@metamask/polling-controller": "^6.0.0",
48
+ "@metamask/network-controller": "^18.0.1",
49
+ "@metamask/polling-controller": "^6.0.1",
50
50
  "@metamask/utils": "^8.3.0",
51
51
  "@types/bn.js": "^5.1.5",
52
52
  "@types/uuid": "^8.3.0",