From 74a2c6f1a017b0154fc68ccb9723e119c5fb69b7 Mon Sep 17 00:00:00 2001 From: ESLint Bot Date: Sun, 6 Sep 2026 15:44:21 -0400 Subject: [PATCH] =?UTF-8?q?chore:=20release=202.0.1=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .release-please-manifest.json | 2 +- CHANGELOG.md | 10 ++++++++++ jsr.json | 2 +- package.json | 2 +- src/index.js | 2 +- 5 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 895bf0e3..b725ab08 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.0.0" + ".": "2.0.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ee104cec..b04184e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [2.0.1](https://github.com/eslint/css/compare/css-v2.0.0...css-v2.0.1) (2026-09-06) + + +### Bug Fixes + +* crash in `no-important` on non-standard important values ([#541](https://github.com/eslint/css/issues/541)) ([2985ad5](https://github.com/eslint/css/commit/2985ad5a79b33d355bafd8156e81bbe16921d7dd)) +* recognize CSS whitespace in named grid areas ([#556](https://github.com/eslint/css/issues/556)) ([ea5407d](https://github.com/eslint/css/commit/ea5407ddd542955b820271db75b4fef73b9bf79e)) +* update baseline data ([#561](https://github.com/eslint/css/issues/561)) ([94d79a4](https://github.com/eslint/css/commit/94d79a46c8249fc6d12e6c02132952e106a53b68)) +* update eslint ([#554](https://github.com/eslint/css/issues/554)) ([33e7314](https://github.com/eslint/css/commit/33e7314cf4127543f1863ebeab13a8b7ecc8f161)) + ## [2.0.0](https://github.com/eslint/css/compare/css-v1.4.0...css-v2.0.0) (2026-09-01) diff --git a/jsr.json b/jsr.json index b3d6c362..14c0070d 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/css", - "version": "2.0.0", + "version": "2.0.1", "exports": { ".": "./dist/index.js" }, diff --git a/package.json b/package.json index 3b49c318..79920b6d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/css", - "version": "2.0.0", + "version": "2.0.1", "description": "CSS linting plugin for ESLint", "author": "Nicholas C. Zakas", "type": "module", diff --git a/src/index.js b/src/index.js index 2bb707a7..5018a36a 100644 --- a/src/index.js +++ b/src/index.js @@ -20,7 +20,7 @@ const plugin = { meta: { name: "@eslint/css", namespace: "css", - version: "2.0.0", // x-release-please-version + version: "2.0.1", // x-release-please-version }, languages: { css: new CSSLanguage(),