diff --git a/.changeset/great-dodos-dream.md b/.changeset/great-dodos-dream.md deleted file mode 100644 index fcdaab357e..0000000000 --- a/.changeset/great-dodos-dream.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -"eslint-plugin-import-x": minor ---- - -Add ESLint flat configuration presets. You can access them with: - -```ts -import eslintPluginImportX from 'eslint-plugin-import-x'; - -eslintPluginImportX.flatConfigs.recommended; -eslintPluginImportX.flatConfigs.react; -eslintPluginImportX.flatConfigs.typescript; -eslintPluginImportX.flatConfigs.electron; -``` diff --git a/.changeset/tasty-colts-cover.md b/.changeset/tasty-colts-cover.md deleted file mode 100644 index 0fd37489d3..0000000000 --- a/.changeset/tasty-colts-cover.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"eslint-plugin-import-x": minor ---- - -Added `no-rename-default` that forbid importing a default export by a different name. Originally created by @whitneytit, ported by @SukkaW diff --git a/CHANGELOG.md b/CHANGELOG.md index 485384bfa1..649de67105 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # eslint-plugin-import-x +## 4.1.0 + +### Minor Changes + +- [#122](https://github.com/un-ts/eslint-plugin-import-x/pull/122) [`cd52e86`](https://github.com/un-ts/eslint-plugin-import-x/commit/cd52e86f44754b4dd0c1aae1e9fd5e952e90938f) Thanks [@michaelfaith](https://github.com/michaelfaith)! - Add ESLint flat configuration presets. You can access them with: + + ```ts + import eslintPluginImportX from "eslint-plugin-import-x"; + + eslintPluginImportX.flatConfigs.recommended; + eslintPluginImportX.flatConfigs.react; + eslintPluginImportX.flatConfigs.typescript; + eslintPluginImportX.flatConfigs.electron; + ``` + +- [#132](https://github.com/un-ts/eslint-plugin-import-x/pull/132) [`9948c78`](https://github.com/un-ts/eslint-plugin-import-x/commit/9948c7894758dd461f6d75b89c6425fee304789a) Thanks [@SukkaW](https://github.com/SukkaW)! - Added `no-rename-default` that forbid importing a default export by a different name. Originally created by @whitneytit, ported by @SukkaW + ## 4.0.0 ### Major Changes diff --git a/package.json b/package.json index a23ed11753..5c0333bf07 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-import-x", - "version": "4.0.0", + "version": "4.1.0", "description": "Import with sanity.", "repository": "git+https://github.com/un-ts/eslint-plugin-import-x", "author": "JounQin (https://www.1stG.me)",