Skip to content

Commit 2519f4e

Browse files
chore: release 0.6.0 πŸš€ (#89)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ae5b544 commit 2519f4e

File tree

5 files changed

+25
-4
lines changed

5 files changed

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

β€ŽCHANGELOG.mdβ€Ž

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

3+
## [0.6.0](https://github.com/eslint/css/compare/css-v0.5.0...css-v0.6.0) (2025-03-26)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Rename require-basline -> use-baseline ([#100](https://github.com/eslint/css/issues/100))
9+
10+
### Features
11+
12+
* CSS nesting baseline support ([#87](https://github.com/eslint/css/issues/87)) ([8fcae6c](https://github.com/eslint/css/commit/8fcae6c17e85809f507c8efbec6d158725f89221))
13+
* Rename require-basline -&gt; use-baseline ([#100](https://github.com/eslint/css/issues/100)) ([21b71b4](https://github.com/eslint/css/commit/21b71b4c3fdb283dc0eb0e3d304e3ec7194578f8)), closes [#96](https://github.com/eslint/css/issues/96)
14+
15+
16+
### Bug Fixes
17+
18+
* Add support period-separated layer names in use-layers rule ([#92](https://github.com/eslint/css/issues/92)) ([54b7da5](https://github.com/eslint/css/commit/54b7da55e39b65a1b2c3ccc793c25b1fef8f2929))
19+
* Catch more parse errors ([#97](https://github.com/eslint/css/issues/97)) ([d08df74](https://github.com/eslint/css/commit/d08df74ac48d34557ebc6f976418ac9d555e9dec))
20+
* compute baseline status of individual features ([#82](https://github.com/eslint/css/issues/82)) ([3d91042](https://github.com/eslint/css/commit/3d910420ce8c6d3923b3256224406902cc721d59))
21+
* Don't check class names in require-baseline ([#93](https://github.com/eslint/css/issues/93)) ([b8d6356](https://github.com/eslint/css/commit/b8d6356f4bf42ff74affcf26bbfb8487b7c26e3d))
22+
* expand supported types in baseline-data ([#74](https://github.com/eslint/css/issues/74)) ([96c3f95](https://github.com/eslint/css/commit/96c3f957c9f7a5f8c676693a50ea9b58e7e93d9a))
23+
324
## [0.5.0](https://github.com/eslint/css/compare/css-v0.4.0...css-v0.5.0) (2025-03-14)
425

526

β€Ž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.5.0",
3+
"version": "0.6.0",
44
"exports": {
55
".": "./dist/esm/index.js",
66
"./syntax": "./dist/esm/syntax/index.js"

β€Ž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.5.0",
3+
"version": "0.6.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
@@ -24,7 +24,7 @@ import useBaseline from "./rules/use-baseline.js";
2424
const plugin = {
2525
meta: {
2626
name: "@eslint/css",
27-
version: "0.5.0", // x-release-please-version
27+
version: "0.6.0", // x-release-please-version
2828
},
2929
languages: {
3030
css: new CSSLanguage(),

0 commit comments

Comments
Β (0)