Skip to content

Commit 47d4592

Browse files
chore: release 0.8.0 πŸš€ (#120)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 4831f49 commit 47d4592

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.7.0"
2+
".": "0.8.0"
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+
## [0.8.0](https://github.com/eslint/css/compare/css-v0.7.0...css-v0.8.0) (2025-05-15)
4+
5+
6+
### Features
7+
8+
* add no-important rule ([#124](https://github.com/eslint/css/issues/124)) ([af043db](https://github.com/eslint/css/commit/af043dbc3359bdd7f2b92e963be630d5141684d7))
9+
* allow custom descriptors in no-invalid-at-rules ([#128](https://github.com/eslint/css/issues/128)) ([df26df3](https://github.com/eslint/css/commit/df26df32f9cd93867a22f4939d1b8cac13e28d6b))
10+
* Update Baseline data ([#130](https://github.com/eslint/css/issues/130)) ([86aad6b](https://github.com/eslint/css/commit/86aad6b7b7b26135af18996c5d26d0a750dbaac2))
11+
12+
13+
### Bug Fixes
14+
15+
* remove redundant `Comment` member from `CSSSyntaxElement` union ([#119](https://github.com/eslint/css/issues/119)) ([67f3d4e](https://github.com/eslint/css/commit/67f3d4e7c442be9cc96a83824a67efeea81a2e85))
16+
317
## [0.7.0](https://github.com/eslint/css/compare/css-v0.6.0...css-v0.7.0) (2025-04-16)
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": "0.7.0",
3+
"version": "0.8.0",
44
"exports": {
55
".": "./dist/esm/index.js",
66
"./syntax": "./dist/esm/syntax/index.js"

β€Žpackage.jsonβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/css",
3-
"version": "0.7.0",
3+
"version": "0.8.0",
44
"description": "CSS linting plugin for ESLint",
55
"author": "Nicholas C. Zakas",
66
"type": "module",
@@ -94,7 +94,7 @@
9494
"license": "Apache-2.0",
9595
"dependencies": {
9696
"@eslint/core": "^0.14.0",
97-
"@eslint/css-tree": "^3.5.2",
97+
"@eslint/css-tree": "^3.3.3",
9898
"@eslint/plugin-kit": "^0.3.1"
9999
},
100100
"devDependencies": {

β€Žsrc/index.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import useBaseline from "./rules/use-baseline.js";
2525
const plugin = {
2626
meta: {
2727
name: "@eslint/css",
28-
version: "0.7.0", // x-release-please-version
28+
version: "0.8.0", // x-release-please-version
2929
},
3030
languages: {
3131
css: new CSSLanguage(),

0 commit comments

Comments
Β (0)