diff --git a/CHANGELOG.md b/CHANGELOG.md index c3207b7..dd55db2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v4.4.1][v4.4.1] - 2020-12-27 + +### Dependencies + +- upgrade `eslint@7.16.0` + ## [v4.4.0][v4.4.0] - 2020-12-15 ### Added diff --git a/README.md b/README.md index 8d46ae3..a039b1e 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ All configs rely on `eslint`, but the most specific configs rely on plugins as w ### `pat`: Base Config - **Requires**: - - `eslint >=7.15.0` + - `eslint >=7.16.0` The `pat` configuration is the base for this package. It **only** declares rules that are shipped with [ESLint][eslint] — therefore it relies on no plugins. It's useful for linting really any Javascript. @@ -40,7 +40,7 @@ module.exports = { ### `pat/node`: Node.js Config - **Requires**: - - `eslint >=7.15.0` + - `eslint >=7.16.0` - `eslint-plugin-node >=11.1.0` The `pat/node` configuration is used for linting [Node.js][node] projects. It extends from the `pat` base config, while adding rules from [`eslint-plugin-node`][eslint-node]. @@ -59,7 +59,7 @@ module.exports = { ### `pat/react`: React.js Config - **Requires**: - - `eslint >=7.15.0` + - `eslint >=7.16.0` - `eslint-plugin-react >=7.20.0` The `pat/react` configuration is used for linting [React.js][react] projects. It extends from the `pat` base config, while adding rules from [`eslint-plugin-react`][eslint-react]. @@ -78,7 +78,7 @@ module.exports = { ### `pat/mocha`: Mocha Config - **Requires**: - - `eslint >=7.15.0` + - `eslint >=7.16.0` - `eslint-plugin-mocha >=8.0.0` The `pat/mocha` configuration is used for linting [Mocha][mocha] test suites. It extends from the `pat` base config, while adding rules from [`eslint-plugin-mocha`][eslint-mocha]. diff --git a/package.json b/package.json index ab27451..30e0f76 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "author": "Pat Gaffney ", "license": "MIT", "peerDependencies": { - "eslint": ">=7.15.0" + "eslint": ">=7.16.0" }, "optionalDependencies": { "eslint-plugin-mocha": ">=8.0.0",