@metamask/ens-controller 1.0.0 → 1.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 +6 -1
  2. package/package.json +3 -3
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
+ ## [1.0.1]
10
+ ### Changed
11
+ - Relax dependencies on `@metamask/base-controller` and `@metamask/controller-utils` (use `^` instead of `~`) ([#998](https://github.com/MetaMask/controllers/pull/998))
12
+
9
13
  ## [1.0.0]
10
14
  ### Added
11
15
  - Initial release
@@ -15,5 +19,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
19
 
16
20
  All changes listed after this point were applied to this package following the monorepo conversion.
17
21
 
18
- [Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/ens-controller@1.0.0...HEAD
22
+ [Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/ens-controller@1.0.1...HEAD
23
+ [1.0.1]: https://github.com/MetaMask/controllers/compare/@metamask/ens-controller@1.0.0...@metamask/ens-controller@1.0.1
19
24
  [1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/ens-controller@1.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/ens-controller",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Maps ENS names to their resolved addresses by chain id",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -29,8 +29,8 @@
29
29
  "test:watch": "jest --watch"
30
30
  },
31
31
  "dependencies": {
32
- "@metamask/base-controller": "~1.0.0",
33
- "@metamask/controller-utils": "~1.0.0"
32
+ "@metamask/base-controller": "^1.1.1",
33
+ "@metamask/controller-utils": "^1.0.0"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@metamask/auto-changelog": "^3.1.0",