diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7b5cb64..37fcefa 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.14.1" + ".": "1.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 695d8a4..8158206 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # Changelog +## [1.0.0](https://github.com/eslint/css/compare/css-v0.14.1...css-v1.0.0) (2025-12-07) + + +### ⚠ BREAKING CHANGES + +* Bump to v1.0.0 +* Require Node.js ^20.19.0 || ^22.13.0 || >=24 ([#302](https://github.com/eslint/css/issues/302)) + +### Features + +* Bump to v1.0.0 ([050bde3](https://github.com/eslint/css/commit/050bde330dcee1c4b9877dfe610c7e7cc9933cb6)) +* Require Node.js ^20.19.0 || ^22.13.0 || >=24 ([#302](https://github.com/eslint/css/issues/302)) ([a1eb7f5](https://github.com/eslint/css/commit/a1eb7f588d791a0d484ca76d7305941d93e98462)) + + +### Bug Fixes + +* add missing `name` property to `recommended` config ([#336](https://github.com/eslint/css/issues/336)) ([f115c3f](https://github.com/eslint/css/commit/f115c3fea440aebe9aee1ef7a7ba94366d5c8afa)) +* correct parent typing for rule visitors ([#313](https://github.com/eslint/css/issues/313)) ([17046d0](https://github.com/eslint/css/commit/17046d0178272e2b12291d32176bcbc9326795a5)) +* update baseline data ([105102e](https://github.com/eslint/css/commit/105102ea4a2351bb752939b477e77c250b296a3a)) +* update baseline data ([85ed786](https://github.com/eslint/css/commit/85ed786674983cfcfcaa2ac0d89e91c63cf8cb6f)) +* update baseline data ([#321](https://github.com/eslint/css/issues/321)) ([61090f9](https://github.com/eslint/css/commit/61090f9243ee3dbb74ff53ce3db405ff31ad0ea1)) +* update baseline data ([#326](https://github.com/eslint/css/issues/326)) ([cddbf92](https://github.com/eslint/css/commit/cddbf92dc3d66b392234bcff40224aab89e09d26)) +* update baseline data ([#332](https://github.com/eslint/css/issues/332)) ([85254d4](https://github.com/eslint/css/commit/85254d4b2d2a17d7acc24e35f21f4e6227fd95f9)) + + +### Miscellaneous Chores + +* Fix release version ([2325732](https://github.com/eslint/css/commit/23257323727f2b3c34c9b4ac2b438e11b36b716e)) + ## [0.14.1](https://github.com/eslint/css/compare/css-v0.14.0...css-v0.14.1) (2025-11-04) diff --git a/jsr.json b/jsr.json index 54039f0..8710ec9 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/css", - "version": "0.14.1", + "version": "1.0.0", "exports": { ".": "./dist/esm/index.js" }, diff --git a/package.json b/package.json index 95ce7ef..6d1ba87 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/css", - "version": "0.14.1", + "version": "1.0.0", "description": "CSS linting plugin for ESLint", "author": "Nicholas C. Zakas", "type": "module", diff --git a/src/index.js b/src/index.js index eee0bc0..08deee1 100644 --- a/src/index.js +++ b/src/index.js @@ -19,7 +19,7 @@ import rules from "./build/rules.js"; const plugin = { meta: { name: "@eslint/css", - version: "0.14.1", // x-release-please-version + version: "1.0.0", // x-release-please-version }, languages: { css: new CSSLanguage(),