From 70ea3c347417e2469df13820db3a443149b63e25 Mon Sep 17 00:00:00 2001 From: ESLint Bot Date: Wed, 1 Jul 2026 05:03:08 -0400 Subject: [PATCH] =?UTF-8?q?chore:=20release=201.4.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 | 20 ++++++++++++++++++++ jsr.json | 2 +- package.json | 2 +- src/index.js | 2 +- 5 files changed, 24 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 96f1cd94..4c313f93 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.3.0" + ".": "1.4.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index fa8548d9..fe8e5132 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [1.4.0](https://github.com/eslint/css/compare/css-v1.3.0...css-v1.4.0) (2026-07-01) + + +### Features + +* add suggestions to prefer-logical-properties ([#474](https://github.com/eslint/css/issues/474)) ([045277e](https://github.com/eslint/css/commit/045277e498d6dcd486f514c1632f40ad6cb7aa4a)) + + +### Bug Fixes + +* check for preludes in `[@import](https://github.com/import)` ([#470](https://github.com/eslint/css/issues/470)) ([cc8791d](https://github.com/eslint/css/commit/cc8791dcb277473fc7a49487c02155c5b049645e)) +* false negative when font used as identifier ([#471](https://github.com/eslint/css/issues/471)) ([f248a32](https://github.com/eslint/css/commit/f248a32d5d99dbdf3ebdf5da6838a4c3c174bc86)) +* reporting font-size unit with percentage in line-height ([#466](https://github.com/eslint/css/issues/466)) ([bae9097](https://github.com/eslint/css/commit/bae9097c0a355b1eb85ad6dcc2737f29f22b3a90)) +* type compatibility issue between CSS v1 and ESLint v9 ([#473](https://github.com/eslint/css/issues/473)) ([3cb31a5](https://github.com/eslint/css/commit/3cb31a5f94a121706ab5150f95f09f2023826797)) +* update baseline data ([6726b1f](https://github.com/eslint/css/commit/6726b1f9facf5f178e3035a87e415d45b3511541)) +* update baseline data ([#469](https://github.com/eslint/css/issues/469)) ([99ba37f](https://github.com/eslint/css/commit/99ba37f373e76d5c86fd34319e6c7c833e2a5110)) +* update baseline data ([#475](https://github.com/eslint/css/issues/475)) ([7dbbb9d](https://github.com/eslint/css/commit/7dbbb9d27c7f17db021bbc5124c51a96c6e3ca10)) +* update baseline data ([#482](https://github.com/eslint/css/issues/482)) ([cd52c73](https://github.com/eslint/css/commit/cd52c7305a0f85f9d0811b83e19a9082307e13cd)) +* update dependency @eslint/plugin-kit to ^0.7.2 ([#463](https://github.com/eslint/css/issues/463)) ([1678418](https://github.com/eslint/css/commit/167841821aeb4a9ba1f632b0d756dd1d3bd2ed5c)) + ## [1.3.0](https://github.com/eslint/css/compare/css-v1.2.0...css-v1.3.0) (2026-05-27) diff --git a/jsr.json b/jsr.json index 78c2dd9d..c1919ffe 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/css", - "version": "1.3.0", + "version": "1.4.0", "exports": { ".": "./dist/index.js" }, diff --git a/package.json b/package.json index 55be59a9..fd13de10 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/css", - "version": "1.3.0", + "version": "1.4.0", "description": "CSS linting plugin for ESLint", "author": "Nicholas C. Zakas", "type": "module", diff --git a/src/index.js b/src/index.js index a9465b1d..a3fe4743 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.3.0", // x-release-please-version + version: "1.4.0", // x-release-please-version }, languages: { css: new CSSLanguage(),