Skip to content

Commit 14db7f5

Browse files
chore: release 0.14.0 πŸš€ (#300)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent e8dc57d commit 14db7f5

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.13.0"
2+
".": "0.14.0"
33
}

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## [0.14.0](https://github.com/eslint/css/compare/css-v0.13.0...css-v0.14.0) (2025-10-29)
4+
5+
6+
### Features
7+
8+
* add `allow*` options to `use-baseline` rule ([#310](https://github.com/eslint/css/issues/310)) ([e8dc57d](https://github.com/eslint/css/commit/e8dc57d91828150f8221de48065993c6478e02ca))
9+
* add `no-unmatchable-selectors` rule ([#301](https://github.com/eslint/css/issues/301)) ([adaa397](https://github.com/eslint/css/commit/adaa397db27c518d04bc2218f8a44dc088e06ddb))
10+
11+
12+
### Bug Fixes
13+
14+
* correct message for functions in `use-baseline` rule ([#297](https://github.com/eslint/css/issues/297)) ([cc0dff7](https://github.com/eslint/css/commit/cc0dff76da0eb1e6c05c31cd8aecf3b6afa5bd0d))
15+
* disallow extra properties in rule options ([#299](https://github.com/eslint/css/issues/299)) ([baf36e2](https://github.com/eslint/css/commit/baf36e26728b512b32a6220f50183757ebbc9056))
16+
* 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))
17+
* update baseline data ([#296](https://github.com/eslint/css/issues/296)) ([0f6725f](https://github.com/eslint/css/commit/0f6725f17a97273b97ca62b2d25cee5ca212df83))
18+
* update baseline data ([#306](https://github.com/eslint/css/issues/306)) ([2f44739](https://github.com/eslint/css/commit/2f4473972a64eb18e64ae997cff8e45718a81b18))
19+
320
## [0.13.0](https://github.com/eslint/css/compare/css-v0.12.0...css-v0.13.0) (2025-10-10)
421

522

β€Žjsr.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/css",
3-
"version": "0.13.0",
3+
"version": "0.14.0",
44
"exports": {
55
".": "./dist/esm/index.js"
66
},

β€Žpackage.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/css",
3-
"version": "0.13.0",
3+
"version": "0.14.0",
44
"description": "CSS linting plugin for ESLint",
55
"author": "Nicholas C. Zakas",
66
"type": "module",

β€Žsrc/index.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import rules from "./build/rules.js";
1919
const plugin = {
2020
meta: {
2121
name: "@eslint/css",
22-
version: "0.13.0", // x-release-please-version
22+
version: "0.14.0", // x-release-please-version
2323
},
2424
languages: {
2525
css: new CSSLanguage(),

0 commit comments

Comments
Β (0)