Skip to content

Commit 52d4c5b

Browse files
chore: release 0.10.0 🚀
1 parent d5bbac1 commit 52d4c5b

File tree

5 files changed

+23
-4
lines changed

5 files changed

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

3+
## [0.10.0](https://github.com/eslint/css/compare/css-v0.9.0...css-v0.10.0) (2025-07-03)
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+
* add `no-invalid-named-grid-areas` rule ([#169](https://github.com/eslint/css/issues/169)) ([162f6e5](https://github.com/eslint/css/commit/162f6e5bd2f3cd2a26f90eef44fa85be6c5a5c93))
14+
* 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))
15+
16+
17+
### Bug Fixes
18+
19+
* Enforce unique items in the options of `prefer-logical-properties` ([b720cf8](https://github.com/eslint/css/commit/b720cf89b611eca7b5778d11bdc4c872813209c3))
20+
* 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))
21+
322
## [0.9.0](https://github.com/eslint/css/compare/css-v0.8.1...css-v0.9.0) (2025-06-12)
423

524

‎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
@@ -27,7 +27,7 @@ import useBaseline from "./rules/use-baseline.js";
2727
const plugin = {
2828
meta: {
2929
name: "@eslint/css",
30-
version: "0.9.0", // x-release-please-version
30+
version: "0.10.0", // x-release-please-version
3131
},
3232
languages: {
3333
css: new CSSLanguage(),

0 commit comments

Comments
 (0)