From 202acb437688ff120411cf822dbf98c99fd90aa1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Oct 2025 14:26:15 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20release=200.14.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 | 17 +++++++++++++++++ jsr.json | 2 +- package.json | 2 +- src/index.js | 2 +- 5 files changed, 21 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ed21d28..727e2be 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.13.0" + ".": "0.14.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 48850b7..5920082 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.14.0](https://github.com/eslint/css/compare/css-v0.13.0...css-v0.14.0) (2025-10-29) + + +### Features + +* add `allow*` options to `use-baseline` rule ([#310](https://github.com/eslint/css/issues/310)) ([e8dc57d](https://github.com/eslint/css/commit/e8dc57d91828150f8221de48065993c6478e02ca)) +* add `no-unmatchable-selectors` rule ([#301](https://github.com/eslint/css/issues/301)) ([adaa397](https://github.com/eslint/css/commit/adaa397db27c518d04bc2218f8a44dc088e06ddb)) + + +### Bug Fixes + +* correct message for functions in `use-baseline` rule ([#297](https://github.com/eslint/css/issues/297)) ([cc0dff7](https://github.com/eslint/css/commit/cc0dff76da0eb1e6c05c31cd8aecf3b6afa5bd0d)) +* disallow extra properties in rule options ([#299](https://github.com/eslint/css/issues/299)) ([baf36e2](https://github.com/eslint/css/commit/baf36e26728b512b32a6220f50183757ebbc9056)) +* enforce valid `allow*` values in `prefer-logical-properties` rule ([#311](https://github.com/eslint/css/issues/311)) ([23caee3](https://github.com/eslint/css/commit/23caee38eef8231e2bbdd4c2c651e0645440b85a)) +* update baseline data ([#296](https://github.com/eslint/css/issues/296)) ([0f6725f](https://github.com/eslint/css/commit/0f6725f17a97273b97ca62b2d25cee5ca212df83)) +* update baseline data ([#306](https://github.com/eslint/css/issues/306)) ([2f44739](https://github.com/eslint/css/commit/2f4473972a64eb18e64ae997cff8e45718a81b18)) + ## [0.13.0](https://github.com/eslint/css/compare/css-v0.12.0...css-v0.13.0) (2025-10-10) diff --git a/jsr.json b/jsr.json index 8bd1d7f..e3bbb4d 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/css", - "version": "0.13.0", + "version": "0.14.0", "exports": { ".": "./dist/esm/index.js" }, diff --git a/package.json b/package.json index 3e8d280..d13711e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/css", - "version": "0.13.0", + "version": "0.14.0", "description": "CSS linting plugin for ESLint", "author": "Nicholas C. Zakas", "type": "module", diff --git a/src/index.js b/src/index.js index 38f7bc6..37a43b6 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.13.0", // x-release-please-version + version: "0.14.0", // x-release-please-version }, languages: { css: new CSSLanguage(),