diff --git a/.changeset/hot-fireants-provide.md b/.changeset/hot-fireants-provide.md deleted file mode 100644 index db6070e0f..000000000 --- a/.changeset/hot-fireants-provide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"eslint-plugin-import-x": minor ---- - -Add `ignoreUnusedTypeExports` option to `no-unused-modules` diff --git a/.changeset/hungry-clocks-pretend.md b/.changeset/hungry-clocks-pretend.md deleted file mode 100644 index f1cd3a04c..000000000 --- a/.changeset/hungry-clocks-pretend.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"eslint-plugin-import-x": patch ---- - -Reverts #111. The introduction of SCC causes extra overhead that overcomes the early return it introduced. - -A new `no-cycle-next` rule is being implemented using the graph. It won't be backward compatible with the current rule `no-cycle`. The current `no-cycle` rule will become `no-cycle-legacy` in the next major version. diff --git a/CHANGELOG.md b/CHANGELOG.md index fed07f070..7604c0766 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # eslint-plugin-import-x +## 3.1.0 + +### Minor Changes + +- [#116](https://github.com/un-ts/eslint-plugin-import-x/pull/116) [`38aa4cb`](https://github.com/un-ts/eslint-plugin-import-x/commit/38aa4cb8433f24e5772fe1d224265acaedf67343) Thanks [@silverwind](https://github.com/silverwind)! - Add `ignoreUnusedTypeExports` option to `no-unused-modules` + +### Patch Changes + +- [#118](https://github.com/un-ts/eslint-plugin-import-x/pull/118) [`0307ff2`](https://github.com/un-ts/eslint-plugin-import-x/commit/0307ff2438f9255f95ee4f574f92c1c3b77fda60) Thanks [@SukkaW](https://github.com/SukkaW)! - Reverts #111. The introduction of SCC causes extra overhead that overcomes the early return it introduced. + + A new `no-cycle-next` rule is being implemented using the graph. It won't be backward compatible with the current rule `no-cycle`. The current `no-cycle` rule will become `no-cycle-legacy` in the next major version. + ## 3.0.1 ### Patch Changes diff --git a/package.json b/package.json index 14c4d8a67..9e587bc2e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-import-x", - "version": "3.0.1", + "version": "3.1.0", "description": "Import with sanity.", "repository": "git+https://github.com/un-ts/eslint-plugin-import-x", "author": "JounQin (https://www.1stG.me)",