Skip to content

Commit c6fb74e

Browse files
committed
chore: release 1.3.1 πŸš€
1 parent 3cb31a5 commit c6fb74e

5 files changed

Lines changed: 18 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.3.0"
2+
".": "1.3.1"
33
}

β€ŽCHANGELOG.mdβ€Ž

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

3+
## [1.3.1](https://github.com/eslint/css/compare/css-v1.3.0...css-v1.3.1) (2026-06-21)
4+
5+
6+
### Bug Fixes
7+
8+
* check for preludes in `[@import](https://github.com/import)` ([#470](https://github.com/eslint/css/issues/470)) ([cc8791d](https://github.com/eslint/css/commit/cc8791dcb277473fc7a49487c02155c5b049645e))
9+
* false negative when font used as identifier ([#471](https://github.com/eslint/css/issues/471)) ([f248a32](https://github.com/eslint/css/commit/f248a32d5d99dbdf3ebdf5da6838a4c3c174bc86))
10+
* reporting font-size unit with percentage in line-height ([#466](https://github.com/eslint/css/issues/466)) ([bae9097](https://github.com/eslint/css/commit/bae9097c0a355b1eb85ad6dcc2737f29f22b3a90))
11+
* type compatibility issue between CSS v1 and ESLint v9 ([#473](https://github.com/eslint/css/issues/473)) ([3cb31a5](https://github.com/eslint/css/commit/3cb31a5f94a121706ab5150f95f09f2023826797))
12+
* update baseline data ([6726b1f](https://github.com/eslint/css/commit/6726b1f9facf5f178e3035a87e415d45b3511541))
13+
* update baseline data ([#469](https://github.com/eslint/css/issues/469)) ([99ba37f](https://github.com/eslint/css/commit/99ba37f373e76d5c86fd34319e6c7c833e2a5110))
14+
* update baseline data ([#475](https://github.com/eslint/css/issues/475)) ([7dbbb9d](https://github.com/eslint/css/commit/7dbbb9d27c7f17db021bbc5124c51a96c6e3ca10))
15+
* update dependency @eslint/plugin-kit to ^0.7.2 ([#463](https://github.com/eslint/css/issues/463)) ([1678418](https://github.com/eslint/css/commit/167841821aeb4a9ba1f632b0d756dd1d3bd2ed5c))
16+
317
## [1.3.0](https://github.com/eslint/css/compare/css-v1.2.0...css-v1.3.0) (2026-05-27)
418

519

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

0 commit comments

Comments
Β (0)