Skip to content

Commit dd420c1

Browse files
chore: release 0.2.0 🚀 (#21)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 9e4b2dd commit dd420c1

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

‎.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0"
2+
".": "0.2.0"
33
}

‎CHANGELOG.md

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

3+
## [0.2.0](https://github.com/eslint/css/compare/css-v0.1.0...css-v0.2.0) (2025-01-07)
4+
5+
6+
### Features
7+
8+
* Add tolerant parsing mode ([#38](https://github.com/eslint/css/issues/38)) ([9e4b2dd](https://github.com/eslint/css/commit/9e4b2dd5ae44715ad98677b3c44ccb54a3a4fe1f)), closes [#29](https://github.com/eslint/css/issues/29)
9+
10+
11+
### Bug Fixes
12+
13+
* add type tests ([#16](https://github.com/eslint/css/issues/16)) ([f21e090](https://github.com/eslint/css/commit/f21e090cca76a85bf6b6c89c8797c79f28d5a163))
14+
315
## 0.1.0 (2024-11-26)
416

517

‎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.1.0",
3+
"version": "0.2.0",
44
"exports": "./dist/esm/index.js",
55
"publish": {
66
"include": [

‎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.1.0",
3+
"version": "0.2.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
@@ -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.1.0", // x-release-please-version
24+
version: "0.2.0", // x-release-please-version
2525
},
2626
languages: {
2727
css: new CSSLanguage(),

0 commit comments

Comments
 (0)