diff --git a/.changeset/eighty-paws-bake.md b/.changeset/eighty-paws-bake.md deleted file mode 100644 index dfbbccb8..00000000 --- a/.changeset/eighty-paws-bake.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"eslint-plugin-astro": patch ---- - -fix: no-exports-from-components rule, which allowed `getStaticPath` instead of `getStaticPaths` diff --git a/CHANGELOG.md b/CHANGELOG.md index 6375fdb0..94c8afff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # eslint-plugin-astro +## 1.2.2 + +### Patch Changes + +- [#397](https://github.com/ota-meshi/eslint-plugin-astro/pull/397) [`58b3f19`](https://github.com/ota-meshi/eslint-plugin-astro/commit/58b3f194d804ed850c91c76e45bb567c68b472f1) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: no-exports-from-components rule, which allowed `getStaticPath` instead of `getStaticPaths` + ## 1.2.1 ### Patch Changes diff --git a/package.json b/package.json index eebaae86..a089e0b0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-astro", - "version": "1.2.1", + "version": "1.2.2", "description": "ESLint plugin for Astro component", "main": "lib/index.js", "module": "lib/index.mjs", diff --git a/src/meta.ts b/src/meta.ts index e0f3ddfe..703529fb 100644 --- a/src/meta.ts +++ b/src/meta.ts @@ -2,4 +2,4 @@ // This file has been automatically generated, // in order to update its content execute "npm run update" export const name = "eslint-plugin-astro" -export const version = "1.2.1" +export const version = "1.2.2"