Skip to content

Commit

Permalink
chore: release 0.1.0 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Nov 13, 2024
1 parent dc553c4 commit 803b07a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.0.0"
".": "0.1.0"
}
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

## 0.1.0 (2024-11-13)


### Features

* Add no-duplicate-imports rule ([#4](https://github.com/eslint/css/issues/4)) ([8d4558b](https://github.com/eslint/css/commit/8d4558bbbd6134d5bba4c0b4130f7be31de1b34a))
* CSS language plugin ([#2](https://github.com/eslint/css/issues/2)) ([52d4f2c](https://github.com/eslint/css/commit/52d4f2c35c8a164a8f95b03ec7709abe6a8e59e8))
2 changes: 1 addition & 1 deletion jsr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/css",
"version": "0.0.0",
"version": "0.1.0",
"exports": "./dist/esm/index.js",
"publish": {
"include": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/css",
"version": "0.0.0",
"version": "0.1.0",
"description": "CSS linting plugin for ESLint",
"author": "Nicholas C. Zakas",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import noDuplicateImports from "./rules/no-duplicate-imports.js";
const plugin = {
meta: {
name: "@eslint/css",
version: "0.0.0", // x-release-please-version
version: "0.1.0", // x-release-please-version
},
languages: {
css: new CSSLanguage(),
Expand Down

0 comments on commit 803b07a

Please sign in to comment.