diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5fdd883..c4ddc74 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.0" + ".": "1.1.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 160933a..851b58f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [1.1.1](https://github.com/eslint/css/compare/css-v1.1.0...css-v1.1.1) (2026-04-12) + + +### Bug Fixes + +* allow CSS-wide keywords in font-family-fallbacks ([#391](https://github.com/eslint/css/issues/391)) ([638c6ee](https://github.com/eslint/css/commit/638c6ee5f71a2d2af983f250633e968859791b6b)) +* update baseline data ([#417](https://github.com/eslint/css/issues/417)) ([5c1c625](https://github.com/eslint/css/commit/5c1c6251a359d26d117171de3a1e258e2c15ded9)) +* update baseline data ([#421](https://github.com/eslint/css/issues/421)) ([77ab636](https://github.com/eslint/css/commit/77ab636d79bba9dcc4c0223fcfcd5368a6bd4656)) +* update dependency @eslint/css-tree to v4 ([#416](https://github.com/eslint/css/issues/416)) ([30ddb0f](https://github.com/eslint/css/commit/30ddb0f98c6b45e651e373a29dcce58037de377b)) +* update eslint ([#414](https://github.com/eslint/css/issues/414)) ([eeff2e2](https://github.com/eslint/css/commit/eeff2e27288305e4ec59d1e02c685f25b27ab6cb)) +* update eslint ([#418](https://github.com/eslint/css/issues/418)) ([d2be7ce](https://github.com/eslint/css/commit/d2be7ceb51b05bccdde1a7cf6f1d99f2f6a353dd)) + ## [1.1.0](https://github.com/eslint/css/compare/css-v1.0.0...css-v1.1.0) (2026-03-29) diff --git a/jsr.json b/jsr.json index 6370ca3..a814c0e 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/css", - "version": "1.1.0", + "version": "1.1.1", "exports": { ".": "./dist/index.js" }, diff --git a/package.json b/package.json index 6976717..e5d6141 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/css", - "version": "1.1.0", + "version": "1.1.1", "description": "CSS linting plugin for ESLint", "author": "Nicholas C. Zakas", "type": "module", diff --git a/src/index.js b/src/index.js index 23dac7c..040ec09 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.1.0", // x-release-please-version + version: "1.1.1", // x-release-please-version }, languages: { css: new CSSLanguage(),