Skip to content

Commit c3faf63

Browse files
chore: release 0.10.0 πŸš€
1 parent 932cf62 commit c3faf63

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.9.0"
2+
".": "0.10.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.10.0](https://github.com/eslint/css/compare/css-v0.9.0...css-v0.10.0) (2025-06-26)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Remove Tailwind syntax in favor of external tailwind-csstree ([#166](https://github.com/eslint/css/issues/166))
9+
10+
### Features
11+
12+
* add `allowUnknownVariables` option to no-invalid-properties ([#178](https://github.com/eslint/css/issues/178)) ([932cf62](https://github.com/eslint/css/commit/932cf62fd10e3fea226e2509dda7bf37bc1a1806))
13+
* Remove Tailwind syntax in favor of external tailwind-csstree ([#166](https://github.com/eslint/css/issues/166)) ([a035fa7](https://github.com/eslint/css/commit/a035fa7c5b36845b73131e2d1a0b8c83f6c89ffe))
14+
15+
16+
### Bug Fixes
17+
18+
* Enforce unique items in the options of `prefer-logical-properties` ([b720cf8](https://github.com/eslint/css/commit/b720cf89b611eca7b5778d11bdc4c872813209c3))
19+
* enforce unique items in the options of `prefer-logical-properties` ([#176](https://github.com/eslint/css/issues/176)) ([b720cf8](https://github.com/eslint/css/commit/b720cf89b611eca7b5778d11bdc4c872813209c3))
20+
321
## [0.9.0](https://github.com/eslint/css/compare/css-v0.8.1...css-v0.9.0) (2025-06-12)
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.9.0",
3+
"version": "0.10.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.9.0",
3+
"version": "0.10.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
@@ -26,7 +26,7 @@ import useBaseline from "./rules/use-baseline.js";
2626
const plugin = {
2727
meta: {
2828
name: "@eslint/css",
29-
version: "0.9.0", // x-release-please-version
29+
version: "0.10.0", // x-release-please-version
3030
},
3131
languages: {
3232
css: new CSSLanguage(),

0 commit comments

Comments
Β (0)