diff --git a/.changeset/heavy-kangaroos-relax.md b/.changeset/heavy-kangaroos-relax.md deleted file mode 100644 index 5ef3e4430..000000000 --- a/.changeset/heavy-kangaroos-relax.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"eslint-plugin-import-x": patch ---- - -Make `eslint-plugin-import-x` overall faster by refactoring the `ExportMap` util diff --git a/.changeset/silent-pumas-sell.md b/.changeset/silent-pumas-sell.md deleted file mode 100644 index 728dba057..000000000 --- a/.changeset/silent-pumas-sell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"eslint-plugin-import-x": patch ---- - -Drastically improve `no-cycle`'s performance by skipping unnecessary BFSes using [Tarjan's SCC](https://en.wikipedia.org/wiki/Tarjan%27s_strongly_connected_components_algorithm). diff --git a/.changeset/wicked-mangos-suffer.md b/.changeset/wicked-mangos-suffer.md deleted file mode 100644 index a2c3d55e8..000000000 --- a/.changeset/wicked-mangos-suffer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"eslint-plugin-import-x": patch ---- - -Make `no-cycle` rule faster diff --git a/CHANGELOG.md b/CHANGELOG.md index 6906f0611..fed07f070 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # eslint-plugin-import-x +## 3.0.1 + +### Patch Changes + +- [#109](https://github.com/un-ts/eslint-plugin-import-x/pull/109) [`fe3121a`](https://github.com/un-ts/eslint-plugin-import-x/commit/fe3121a2d74db1c2178d1ab189ef59b80c5b90c4) Thanks [@SukkaW](https://github.com/SukkaW)! - Make `eslint-plugin-import-x` overall faster by refactoring the `ExportMap` util + +- [#111](https://github.com/un-ts/eslint-plugin-import-x/pull/111) [`5cce946`](https://github.com/un-ts/eslint-plugin-import-x/commit/5cce9461c2863c31af126afb7c59d67deb13a6e7) Thanks [@SukkaW](https://github.com/SukkaW)! - Drastically improve `no-cycle`'s performance by skipping unnecessary BFSes using [Tarjan's SCC](https://en.wikipedia.org/wiki/Tarjan%27s_strongly_connected_components_algorithm). + +- [#109](https://github.com/un-ts/eslint-plugin-import-x/pull/109) [`fe3121a`](https://github.com/un-ts/eslint-plugin-import-x/commit/fe3121a2d74db1c2178d1ab189ef59b80c5b90c4) Thanks [@SukkaW](https://github.com/SukkaW)! - Make `no-cycle` rule faster + ## 3.0.0 ### Major Changes diff --git a/package.json b/package.json index dd3798a0c..6f6cb97f7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-import-x", - "version": "3.0.0", + "version": "3.0.1", "description": "Import with sanity.", "repository": "git+https://github.com/un-ts/eslint-plugin-import-x", "author": "JounQin (https://www.1stG.me)",