Skip to content

Commit d7fdf0d

Browse files
chore: release 0.10.0 🚀
1 parent a035fa7 commit d7fdf0d

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed

‎.release-please-manifest.json

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: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## [0.10.0](https://github.com/eslint/css/compare/css-v0.9.0...css-v0.10.0) (2025-06-23)
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+
* 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))
13+
14+
15+
### Bug Fixes
16+
17+
* Enforce unique items in the options of `prefer-logical-properties` ([b720cf8](https://github.com/eslint/css/commit/b720cf89b611eca7b5778d11bdc4c872813209c3))
18+
* 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))
19+
320
## [0.9.0](https://github.com/eslint/css/compare/css-v0.8.1...css-v0.9.0) (2025-06-12)
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.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)