Skip to content

Commit 62821d6

Browse files
github-actions[bot]github-actionsGudahtt
authored
12.0.0 (#302)
* 12.0.0 * Update changelogs and READMEs The changelog updates were mostly taken from #298, except that for each non-base config package there was an entry modified to say that the base config was updated (rather than describing the change in the base config) --------- Co-authored-by: github-actions <[email protected]> Co-authored-by: Mark Stacey <[email protected]>
1 parent ee56f54 commit 62821d6

23 files changed

+97
-54
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "root",
3-
"version": "11.1.0",
3+
"version": "12.0.0",
44
"private": true,
55
"repository": {
66
"type": "git",
@@ -26,8 +26,8 @@
2626
"@eslint/eslintrc": "^1.3.0",
2727
"@lavamoat/allow-scripts": "^2.3.1",
2828
"@metamask/auto-changelog": "^3.0.0",
29-
"@metamask/eslint-config": "^11.0.0",
30-
"@metamask/eslint-config-nodejs": "^11.0.0",
29+
"@metamask/eslint-config": "^12.0.0",
30+
"@metamask/eslint-config-nodejs": "^12.0.0",
3131
"@metamask/utils": "^6.0.0",
3232
"@types/jest": "^29.2.2",
3333
"eslint": "^8.27.0",

packages/base/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [12.0.0]
10+
### Added
11+
- **BREAKING:** Add `eslint-plugin-promise` peer dependency, and enable `no-multiple-resolved` ([#287](https://github.com/MetaMask/eslint-config/pull/287))
12+
913
## [11.1.0]
1014
### Changed
1115
- Exclude test files from package ([#266](https://github.com/MetaMask/eslint-config/pull/266))
@@ -160,7 +164,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
160164
### Added
161165
- Add base, TypeScript, and Jest configs (#3)
162166

163-
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/v11.1.0...HEAD
167+
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/v12.0.0...HEAD
168+
[12.0.0]: https://github.com/MetaMask/eslint-config/compare/v11.1.0...v12.0.0
164169
[11.1.0]: https://github.com/MetaMask/eslint-config/compare/v11.0.2...v11.1.0
165170
[11.0.2]: https://github.com/MetaMask/eslint-config/compare/v11.0.1...v11.0.2
166171
[11.0.1]: https://github.com/MetaMask/eslint-config/compare/v11.0.0...v11.0.1

packages/base/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Our default export contains a base set of ESLint rules for ES6+:
88

99
```bash
1010
yarn add --dev \
11-
@metamask/eslint-config@^11.0.1 \
11+
@metamask/eslint-config@^12.0.0 \
1212
eslint@^8.27.0 \
1313
eslint-config-prettier@^8.5.0 \
1414
eslint-plugin-import@^2.26.0 \

packages/base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/eslint-config",
3-
"version": "11.1.0",
3+
"version": "12.0.0",
44
"description": "Shareable MetaMask ESLint config.",
55
"homepage": "https://github.com/MetaMask/eslint-config#readme",
66
"bugs": {

packages/browser/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [12.0.0]
10+
### Changed
11+
- **BREAKING:** Update peer dependency `@metamask/eslint-config` to v12
12+
913
## [11.1.0]
1014
### Changed
1115
- Exclude test files from package ([#266](https://github.com/MetaMask/eslint-config/pull/266))
@@ -14,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1418
### Added
1519
- Initial release of this package.
1620

17-
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/v11.1.0...HEAD
21+
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/v12.0.0...HEAD
22+
[12.0.0]: https://github.com/MetaMask/eslint-config/compare/v11.1.0...v12.0.0
1823
[11.1.0]: https://github.com/MetaMask/eslint-config/compare/v11.0.0...v11.1.0
1924
[11.0.0]: https://github.com/MetaMask/eslint-config/releases/tag/v11.0.0

packages/browser/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Our default export contains a base set of ESLint rules for ES6+:
88

99
```bash
1010
yarn add --dev \
11-
@metamask/eslint-config@^11.0.1 \
12-
@metamask/eslint-config-browser@^11.0.0 \
11+
@metamask/eslint-config@^12.0.0 \
12+
@metamask/eslint-config-browser@^12.0.0 \
1313
eslint@^8.27.0 \
1414
eslint-config-prettier@^8.5.0 \
1515
eslint-plugin-import@^2.26.0 \

packages/browser/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/eslint-config-browser",
3-
"version": "11.1.0",
3+
"version": "12.0.0",
44
"description": "Shareable MetaMask ESLint plugin for browser environments.",
55
"homepage": "https://github.com/MetaMask/eslint-config#readme",
66
"bugs": {
@@ -31,7 +31,7 @@
3131
"prettier": "^2.7.1"
3232
},
3333
"peerDependencies": {
34-
"@metamask/eslint-config": "^11.0.0",
34+
"@metamask/eslint-config": "^12.0.0",
3535
"eslint": "^8.27.0"
3636
},
3737
"engines": {

packages/commonjs/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [12.0.0]
10+
### Changed
11+
- **BREAKING:** Add peer dependency `@metamask/eslint-config` and remove ESLint plugin and prettier peer dependencies ([#301](https://github.com/MetaMask/eslint-config/pull/301))
12+
- In the initial release, this package had the wrong list of peer dependencies. This brings this package back into alignment with the others.
13+
914
## [11.1.0]
1015
### Added
1116
- Initial release of this package ([#267](https://github.com/MetaMask/eslint-config/pull/267))
1217

13-
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/v11.1.0...HEAD
18+
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/v12.0.0...HEAD
19+
[12.0.0]: https://github.com/MetaMask/eslint-config/compare/v11.1.0...v12.0.0
1420
[11.1.0]: https://github.com/MetaMask/eslint-config/releases/tag/v11.1.0

packages/commonjs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ MetaMask's ESLint configuration for projects using CommonJS.
66

77
```bash
88
yarn add --dev \
9-
@metamask/eslint-config@^11.0.1 \
10-
@metamask/eslint-config-commonjs@^11.0.2 \
9+
@metamask/eslint-config@^12.0.0 \
10+
@metamask/eslint-config-commonjs@^12.0.0 \
1111
eslint@^8.27.0 \
1212
eslint-config-prettier@^8.5.0 \
1313
eslint-plugin-import@^2.26.0 \

packages/commonjs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/eslint-config-commonjs",
3-
"version": "11.1.0",
3+
"version": "12.0.0",
44
"description": "Shareable MetaMask ESLint config for CommonJS projects.",
55
"homepage": "https://github.com/MetaMask/eslint-config#readme",
66
"bugs": {
@@ -31,7 +31,7 @@
3131
"prettier": "^2.7.1"
3232
},
3333
"peerDependencies": {
34-
"@metamask/eslint-config": "^11.0.0",
34+
"@metamask/eslint-config": "^12.0.0",
3535
"eslint": "^8.27.0"
3636
},
3737
"engines": {

0 commit comments

Comments
 (0)