Skip to content

Commit 33fb3b8

Browse files
chore: release 0.1.0 🚀 (#3)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent b90ee0e commit 33fb3b8

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
lines changed

‎.release-please-manifest.json

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

‎CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changelog
2+
3+
## 0.1.0 (2024-11-26)
4+
5+
6+
### Features
7+
8+
* Add no-duplicate-imports rule ([#4](https://github.com/eslint/css/issues/4)) ([8d4558b](https://github.com/eslint/css/commit/8d4558bbbd6134d5bba4c0b4130f7be31de1b34a))
9+
* CSS language plugin ([#2](https://github.com/eslint/css/issues/2)) ([52d4f2c](https://github.com/eslint/css/commit/52d4f2c35c8a164a8f95b03ec7709abe6a8e59e8))
10+
* no-invalid-properties rule ([#11](https://github.com/eslint/css/issues/11)) ([9b80bdd](https://github.com/eslint/css/commit/9b80bdd5e222b158fd94dbef9ca6add92dd2a5ce))
11+
* no-unknown-at-rules -&gt; no-invalid-at-rules ([#12](https://github.com/eslint/css/issues/12)) ([b90ee0e](https://github.com/eslint/css/commit/b90ee0eb86691747040f48f92afb19f6a18d2231))
12+
* no-unknown-at-rules rule ([#7](https://github.com/eslint/css/issues/7)) ([9a4d027](https://github.com/eslint/css/commit/9a4d02721a8f7f5d1f119337a45fb4336ee69156))
13+
* no-unknown-properties rule ([#5](https://github.com/eslint/css/issues/5)) ([43dec96](https://github.com/eslint/css/commit/43dec96553557be58039a658e0bb100cd6ae2ab8))

‎jsr.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/css",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"exports": "./dist/esm/index.js",
55
"publish": {
66
"include": [

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/css",
3-
"version": "0.0.0",
3+
"version": "0.1.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
@@ -21,7 +21,7 @@ import noInvalidAtRules from "./rules/no-invalid-at-rules.js";
2121
const plugin = {
2222
meta: {
2323
name: "@eslint/css",
24-
version: "0.0.0", // x-release-please-version
24+
version: "0.1.0", // x-release-please-version
2525
},
2626
languages: {
2727
css: new CSSLanguage(),

0 commit comments

Comments
 (0)