diff --git a/CHANGELOG.md b/CHANGELOG.md index a289912..8331d25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# [2.0.0](https://github.com/lion-byte/eslint-config/compare/v1.9.0...v2.0.0) (2021-12-19) + + +### Features + +* add `@typescript-eslint/recommended` rules ([6d33824](https://github.com/lion-byte/eslint-config/commit/6d3382419b0c1fce5553a90e75fe1f083f65db57)) +* drop many rules and defer to recommended/prettier ([4b88ddf](https://github.com/lion-byte/eslint-config/commit/4b88ddfeb7dbca29f9c7fa8987443a2167f7b590)) + + +### BREAKING CHANGES + +* Require Node.js >= 14.17.4 +* Require ESLint >= 8 +* Dropped `eslint-plugin-promise` +* Move `dependencies` to `peer-dependencies` + # [2.0.0-next.2](https://github.com/lion-byte/eslint-config/compare/v2.0.0-next.1...v2.0.0-next.2) (2021-12-15) diff --git a/package-lock.json b/package-lock.json index 5df32e0..383d01d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@lionbyte/eslint-config", - "version": "2.0.0-next.2", + "version": "2.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@lionbyte/eslint-config", - "version": "2.0.0-next.2", + "version": "2.0.0", "license": "MIT", "devDependencies": { "@semantic-release/changelog": "^6.0.1", diff --git a/package.json b/package.json index 714d1f2..1e0c955 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lionbyte/eslint-config", - "version": "2.0.0-next.2", + "version": "2.0.0", "description": "ESLint config for personal projects", "scripts": { "format": "npm run prettier && npm run lint -- --fix",