Skip to content

Commit 7c2eff8

Browse files
committed
chore: release 1.0.0 πŸš€
1 parent ac57dc8 commit 7c2eff8

File tree

5 files changed

+37
-4
lines changed

5 files changed

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

β€ŽCHANGELOG.mdβ€Ž

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

3+
## [1.0.0](https://github.com/eslint/css/compare/css-v0.14.1...css-v1.0.0) (2026-01-10)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Bump to v1.0.0
9+
* Require Node.js ^20.19.0 || ^22.13.0 || >=24 ([#302](https://github.com/eslint/css/issues/302))
10+
11+
### Features
12+
13+
* Allow function-based customSyntax options ([#357](https://github.com/eslint/css/issues/357)) ([3479200](https://github.com/eslint/css/commit/34792001bb31412aec6dbcba6e652429118d2221))
14+
* Bump to v1.0.0 ([050bde3](https://github.com/eslint/css/commit/050bde330dcee1c4b9877dfe610c7e7cc9933cb6))
15+
* 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))
16+
17+
18+
### Bug Fixes
19+
20+
* add missing `name` property to `recommended` config ([#336](https://github.com/eslint/css/issues/336)) ([f115c3f](https://github.com/eslint/css/commit/f115c3fea440aebe9aee1ef7a7ba94366d5c8afa))
21+
* correct parent typing for rule visitors ([#313](https://github.com/eslint/css/issues/313)) ([17046d0](https://github.com/eslint/css/commit/17046d0178272e2b12291d32176bcbc9326795a5))
22+
* update baseline data ([105102e](https://github.com/eslint/css/commit/105102ea4a2351bb752939b477e77c250b296a3a))
23+
* update baseline data ([85ed786](https://github.com/eslint/css/commit/85ed786674983cfcfcaa2ac0d89e91c63cf8cb6f))
24+
* update baseline data ([#321](https://github.com/eslint/css/issues/321)) ([61090f9](https://github.com/eslint/css/commit/61090f9243ee3dbb74ff53ce3db405ff31ad0ea1))
25+
* update baseline data ([#326](https://github.com/eslint/css/issues/326)) ([cddbf92](https://github.com/eslint/css/commit/cddbf92dc3d66b392234bcff40224aab89e09d26))
26+
* update baseline data ([#332](https://github.com/eslint/css/issues/332)) ([85254d4](https://github.com/eslint/css/commit/85254d4b2d2a17d7acc24e35f21f4e6227fd95f9))
27+
* update baseline data ([#343](https://github.com/eslint/css/issues/343)) ([f2ef187](https://github.com/eslint/css/commit/f2ef187c2f1c92806193e7bd6af833ab167e6859))
28+
* update baseline data ([#347](https://github.com/eslint/css/issues/347)) ([17746f9](https://github.com/eslint/css/commit/17746f9fa316d7eacef37bef8c94c8e82f646cf4))
29+
* update dependency @eslint/plugin-kit to ^0.5.1 ([#358](https://github.com/eslint/css/issues/358)) ([ac57dc8](https://github.com/eslint/css/commit/ac57dc86961d5086871d85a638904682e4e7d37a))
30+
31+
32+
### Miscellaneous Chores
33+
34+
* Fix release version ([2325732](https://github.com/eslint/css/commit/23257323727f2b3c34c9b4ac2b438e11b36b716e))
35+
336
## [0.14.1](https://github.com/eslint/css/compare/css-v0.14.0...css-v0.14.1) (2025-11-04)
437

538

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

0 commit comments

Comments
Β (0)