Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.14.1"
".": "0.15.0"
}
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [0.15.0](https://github.com/eslint/css/compare/css-v0.14.1...css-v0.15.0) (2025-11-20)


### âš  BREAKING CHANGES

* Require Node.js ^20.19.0 || ^22.13.0 || >=24 ([#302](https://github.com/eslint/css/issues/302))

### Features

* Require Node.js ^20.19.0 || ^22.13.0 || >=24 ([#302](https://github.com/eslint/css/issues/302)) ([a1eb7f5](https://github.com/eslint/css/commit/a1eb7f588d791a0d484ca76d7305941d93e98462))


### Bug Fixes

* correct parent typing for rule visitors ([#313](https://github.com/eslint/css/issues/313)) ([17046d0](https://github.com/eslint/css/commit/17046d0178272e2b12291d32176bcbc9326795a5))
* update baseline data ([#321](https://github.com/eslint/css/issues/321)) ([61090f9](https://github.com/eslint/css/commit/61090f9243ee3dbb74ff53ce3db405ff31ad0ea1))
* update baseline data ([#326](https://github.com/eslint/css/issues/326)) ([cddbf92](https://github.com/eslint/css/commit/cddbf92dc3d66b392234bcff40224aab89e09d26))

## [0.14.1](https://github.com/eslint/css/compare/css-v0.14.0...css-v0.14.1) (2025-11-04)


Expand Down
2 changes: 1 addition & 1 deletion jsr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/css",
"version": "0.14.1",
"version": "0.15.0",
"exports": {
".": "./dist/esm/index.js"
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/css",
"version": "0.14.1",
"version": "0.15.0",
"description": "CSS linting plugin for ESLint",
"author": "Nicholas C. Zakas",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import rules from "./build/rules.js";
const plugin = {
meta: {
name: "@eslint/css",
version: "0.14.1", // x-release-please-version
version: "0.15.0", // x-release-please-version
},
languages: {
css: new CSSLanguage(),
Expand Down