From 7d1471fbee25dd7f22a8c93624f01aeed5f5e2a0 Mon Sep 17 00:00:00 2001 From: ESLint Bot Date: Wed, 25 Mar 2026 13:42:27 -0400 Subject: [PATCH] =?UTF-8?q?chore:=20release=201.1.0=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 | 14 ++++++++++++++ jsr.json | 2 +- package.json | 2 +- src/index.js | 2 +- 5 files changed, 18 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 37fcefaa..5fdd8830 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.0" + ".": "1.1.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 82ab4754..b5316e48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.1.0](https://github.com/eslint/css/compare/css-v1.0.0...css-v1.1.0) (2026-03-25) + + +### Features + +* add CSS unit baseline checking ([#403](https://github.com/eslint/css/issues/403)) ([51f24f4](https://github.com/eslint/css/commit/51f24f494860ccd9852f876040de8bcf86013e34)) + + +### Bug Fixes + +* correctly extract baseline support for CSS functions ([#401](https://github.com/eslint/css/issues/401)) ([a1b5c6f](https://github.com/eslint/css/commit/a1b5c6f5e96d2b63d1804f686bfe30180d483966)) +* update baseline data ([#399](https://github.com/eslint/css/issues/399)) ([235f451](https://github.com/eslint/css/commit/235f451d4ce4af1467ad0a0413ef3b2cf006527d)) +* update baseline data ([#405](https://github.com/eslint/css/issues/405)) ([616558e](https://github.com/eslint/css/commit/616558e87e6cbc1e36cbaa8b13e498203eab2fc2)) + ## [1.0.0](https://github.com/eslint/css/compare/css-v0.14.1...css-v1.0.0) (2026-03-08) diff --git a/jsr.json b/jsr.json index 5f6b827b..6370ca39 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/css", - "version": "1.0.0", + "version": "1.1.0", "exports": { ".": "./dist/index.js" }, diff --git a/package.json b/package.json index fb557305..ddb6052a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/css", - "version": "1.0.0", + "version": "1.1.0", "description": "CSS linting plugin for ESLint", "author": "Nicholas C. Zakas", "type": "module", diff --git a/src/index.js b/src/index.js index fc529e8e..23dac7c5 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: "1.0.0", // x-release-please-version + version: "1.1.0", // x-release-please-version }, languages: { css: new CSSLanguage(),