From 024ab52b9e65ac187d3b19f4d11730dc9103bde0 Mon Sep 17 00:00:00 2001 From: ESLint Bot Date: Sat, 11 Apr 2026 22:14:41 -0400 Subject: [PATCH] =?UTF-8?q?chore:=20release=201.1.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 | 12 ++++++++++++ jsr.json | 2 +- package.json | 2 +- src/index.js | 2 +- 5 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5fdd8830..c4ddc748 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.0" + ".": "1.1.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 160933af..851b58f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [1.1.1](https://github.com/eslint/css/compare/css-v1.1.0...css-v1.1.1) (2026-04-12) + + +### Bug Fixes + +* allow CSS-wide keywords in font-family-fallbacks ([#391](https://github.com/eslint/css/issues/391)) ([638c6ee](https://github.com/eslint/css/commit/638c6ee5f71a2d2af983f250633e968859791b6b)) +* update baseline data ([#417](https://github.com/eslint/css/issues/417)) ([5c1c625](https://github.com/eslint/css/commit/5c1c6251a359d26d117171de3a1e258e2c15ded9)) +* update baseline data ([#421](https://github.com/eslint/css/issues/421)) ([77ab636](https://github.com/eslint/css/commit/77ab636d79bba9dcc4c0223fcfcd5368a6bd4656)) +* update dependency @eslint/css-tree to v4 ([#416](https://github.com/eslint/css/issues/416)) ([30ddb0f](https://github.com/eslint/css/commit/30ddb0f98c6b45e651e373a29dcce58037de377b)) +* update eslint ([#414](https://github.com/eslint/css/issues/414)) ([eeff2e2](https://github.com/eslint/css/commit/eeff2e27288305e4ec59d1e02c685f25b27ab6cb)) +* update eslint ([#418](https://github.com/eslint/css/issues/418)) ([d2be7ce](https://github.com/eslint/css/commit/d2be7ceb51b05bccdde1a7cf6f1d99f2f6a353dd)) + ## [1.1.0](https://github.com/eslint/css/compare/css-v1.0.0...css-v1.1.0) (2026-03-29) diff --git a/jsr.json b/jsr.json index 6370ca39..a814c0ea 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/css", - "version": "1.1.0", + "version": "1.1.1", "exports": { ".": "./dist/index.js" }, diff --git a/package.json b/package.json index 69767170..e5d6141d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/css", - "version": "1.1.0", + "version": "1.1.1", "description": "CSS linting plugin for ESLint", "author": "Nicholas C. Zakas", "type": "module", diff --git a/src/index.js b/src/index.js index 23dac7c5..040ec092 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.1.0", // x-release-please-version + version: "1.1.1", // x-release-please-version }, languages: { css: new CSSLanguage(),