diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c3f1463..41ea87d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.2.0" + ".": "1.2.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d9c833e..279edb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [1.2.1](https://github.com/eslint/json/compare/json-v1.2.0...json-v1.2.1) (2026-05-19) + + +### Bug Fixes + +* update eslint ([#226](https://github.com/eslint/json/issues/226)) ([237148f](https://github.com/eslint/json/commit/237148ff7692e4b5fa813dd3bb3757eaebf866e9)) +* update eslint ([#228](https://github.com/eslint/json/issues/228)) ([5803df5](https://github.com/eslint/json/commit/5803df5fd172562e10e76913370a801c55cf61d3)) + ## [1.2.0](https://github.com/eslint/json/compare/json-v1.1.0...json-v1.2.0) (2026-03-16) diff --git a/jsr.json b/jsr.json index 645f239..21803cb 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/json", - "version": "1.2.0", + "version": "1.2.1", "exports": "./dist/index.js", "publish": { "include": [ diff --git a/package.json b/package.json index 47c647c..330b1b6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/json", - "version": "1.2.0", + "version": "1.2.1", "description": "JSON linting plugin for ESLint", "author": "Nicholas C. Zakas", "type": "module", diff --git a/src/index.js b/src/index.js index c9b7310..5429ddc 100644 --- a/src/index.js +++ b/src/index.js @@ -19,7 +19,7 @@ import rules from "./build/rules.js"; const plugin = { meta: { name: "@eslint/json", - version: "1.2.0", // x-release-please-version + version: "1.2.1", // x-release-please-version }, languages: { json: new JSONLanguage({ mode: "json" }),