Skip to content

Commit 844cb4e

Browse files
chore: release 0.12.0 πŸš€
1 parent 73734bb commit 844cb4e

File tree

5 files changed

+22
-4
lines changed

5 files changed

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

β€ŽCHANGELOG.mdβ€Ž

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

3+
## [0.12.0](https://github.com/eslint/css/compare/css-v0.11.1...css-v0.12.0) (2025-10-06)
4+
5+
6+
### Features
7+
8+
* add support for `getLocFromIndex` and `getIndexFromLoc` ([#167](https://github.com/eslint/css/issues/167)) ([3baeacf](https://github.com/eslint/css/commit/3baeacfe806a39763bbb63106a2fd750d2e407a1))
9+
10+
11+
### Bug Fixes
12+
13+
* correct location reporting for `!important` in `no-important` rule ([#286](https://github.com/eslint/css/issues/286)) ([33ea905](https://github.com/eslint/css/commit/33ea9056be5946894be35616cb95662ec6aad4b2))
14+
* correct the return type of `applyInlineConfig` ([#281](https://github.com/eslint/css/issues/281)) ([386f42a](https://github.com/eslint/css/commit/386f42a1f40c1abb59090d48750d18ffe72917fe))
15+
* handle all CSS newline types in `CSSSourceCode` ([#275](https://github.com/eslint/css/issues/275)) ([2d0eec6](https://github.com/eslint/css/commit/2d0eec6ae06bd8561ed27d5912066278f763ad01))
16+
* handle all CSS newlines in rules ([#280](https://github.com/eslint/css/issues/280)) ([ed0c0f1](https://github.com/eslint/css/commit/ed0c0f135540781439bd12216583f5cd7d1ff0e4))
17+
* no-invalid-properties false positives for var() in functions ([#227](https://github.com/eslint/css/issues/227)) ([268c7f0](https://github.com/eslint/css/commit/268c7f03b981025e97c1489848212b5e9a27a9ab))
18+
* update baseline data ([fb65800](https://github.com/eslint/css/commit/fb658009ef6d92e1ad11c0ae9d57ba5c20e67f55))
19+
* update baseline data ([#287](https://github.com/eslint/css/issues/287)) ([73734bb](https://github.com/eslint/css/commit/73734bb9f6b756d5f993b5b0b13c455d9e39f70d))
20+
321
## [0.11.1](https://github.com/eslint/css/compare/css-v0.11.0...css-v0.11.1) (2025-09-22)
422

523

β€Ž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.11.1",
3+
"version": "0.12.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.11.1",
3+
"version": "0.12.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.11.1", // x-release-please-version
22+
version: "0.12.0", // x-release-please-version
2323
},
2424
languages: {
2525
css: new CSSLanguage(),

0 commit comments

Comments
Β (0)