Skip to content

Commit a131cba

Browse files
authored
chore: release 1.1.0 πŸš€ (#400)
1 parent 6f8c083 commit a131cba

5 files changed

Lines changed: 19 additions & 4 deletions

File tree

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

β€ŽCHANGELOG.mdβ€Ž

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

3+
## [1.1.0](https://github.com/eslint/css/compare/css-v1.0.0...css-v1.1.0) (2026-03-29)
4+
5+
6+
### Features
7+
8+
* add CSS unit baseline checking ([#403](https://github.com/eslint/css/issues/403)) ([51f24f4](https://github.com/eslint/css/commit/51f24f494860ccd9852f876040de8bcf86013e34))
9+
10+
11+
### Bug Fixes
12+
13+
* correctly extract baseline support for CSS functions ([#401](https://github.com/eslint/css/issues/401)) ([a1b5c6f](https://github.com/eslint/css/commit/a1b5c6f5e96d2b63d1804f686bfe30180d483966))
14+
* update baseline data ([#399](https://github.com/eslint/css/issues/399)) ([235f451](https://github.com/eslint/css/commit/235f451d4ce4af1467ad0a0413ef3b2cf006527d))
15+
* update baseline data ([#405](https://github.com/eslint/css/issues/405)) ([616558e](https://github.com/eslint/css/commit/616558e87e6cbc1e36cbaa8b13e498203eab2fc2))
16+
* update baseline data ([#412](https://github.com/eslint/css/issues/412)) ([6f8c083](https://github.com/eslint/css/commit/6f8c083765e827dbec82b41b3feedb76be1cb7bc))
17+
318
## [1.0.0](https://github.com/eslint/css/compare/css-v0.14.1...css-v1.0.0) (2026-03-08)
419

520

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

0 commit comments

Comments
Β (0)