Skip to content

Commit 1ce684b

Browse files
chore: release 0.5.0 🚀 (#69)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 4c70882 commit 1ce684b

5 files changed

+14
-4
lines changed

‎.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.4.0"
2+
".": "0.5.0"
33
}

‎CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## [0.5.0](https://github.com/eslint/css/compare/css-v0.4.0...css-v0.5.0) (2025-03-14)
4+
5+
6+
### Features
7+
8+
* add prefer-logical-properties rule ([#63](https://github.com/eslint/css/issues/63)) ([2a440ce](https://github.com/eslint/css/commit/2a440ce617cc6754563bc8c41ae16dfd445a0b95))
9+
* add selector support to require-baseline ([#61](https://github.com/eslint/css/issues/61)) ([9c7fd6a](https://github.com/eslint/css/commit/9c7fd6aa06b62c70d979ff5f7b9c06a95fdeed56))
10+
* add support for baseline years ([#81](https://github.com/eslint/css/issues/81)) ([4c70882](https://github.com/eslint/css/commit/4c70882fb3e3752f1b3153c190c767386d61cb95))
11+
* Switch to @eslint/css-tree ([#83](https://github.com/eslint/css/issues/83)) ([828a6eb](https://github.com/eslint/css/commit/828a6eb9b32063c58395583a090a723f7a287481))
12+
313
## [0.4.0](https://github.com/eslint/css/compare/css-v0.3.0...css-v0.4.0) (2025-02-19)
414

515

‎jsr.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/css",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"exports": {
55
".": "./dist/esm/index.js",
66
"./syntax": "./dist/esm/syntax/index.js"

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/css",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "CSS linting plugin for ESLint",
55
"author": "Nicholas C. Zakas",
66
"type": "module",

‎src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import requireBaseline from "./rules/require-baseline.js";
2424
const plugin = {
2525
meta: {
2626
name: "@eslint/css",
27-
version: "0.4.0", // x-release-please-version
27+
version: "0.5.0", // x-release-please-version
2828
},
2929
languages: {
3030
css: new CSSLanguage(),

0 commit comments

Comments
 (0)