diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 37fcefa..8d7e5f1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.0" + ".": "1.0.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 82ab475..051c7af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.0.1](https://github.com/eslint/css/compare/css-v1.0.0...css-v1.0.1) (2026-03-17) + + +### Bug Fixes + +* update baseline data ([#399](https://github.com/eslint/css/issues/399)) ([235f451](https://github.com/eslint/css/commit/235f451d4ce4af1467ad0a0413ef3b2cf006527d)) + ## [1.0.0](https://github.com/eslint/css/compare/css-v0.14.1...css-v1.0.0) (2026-03-08) diff --git a/jsr.json b/jsr.json index 5f6b827..92631ef 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/css", - "version": "1.0.0", + "version": "1.0.1", "exports": { ".": "./dist/index.js" }, diff --git a/package.json b/package.json index 6ea4680..1d41fee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/css", - "version": "1.0.0", + "version": "1.0.1", "description": "CSS linting plugin for ESLint", "author": "Nicholas C. Zakas", "type": "module", diff --git a/src/index.js b/src/index.js index fc529e8..20058d9 100644 --- a/src/index.js +++ b/src/index.js @@ -19,7 +19,7 @@ import rules from "./build/rules.js"; const plugin = { meta: { name: "@eslint/css", - version: "1.0.0", // x-release-please-version + version: "1.0.1", // x-release-please-version }, languages: { css: new CSSLanguage(),