diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 727e2be..7b5cb64 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.14.0" + ".": "0.14.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e299217..bd5cd1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.14.1](https://github.com/eslint/json/compare/json-v0.14.0...json-v0.14.1) (2025-11-13) + + +### Bug Fixes + +* display raw key in the message ([#179](https://github.com/eslint/json/issues/179)) ([3d63c38](https://github.com/eslint/json/commit/3d63c38fd2000418aceee64feb054b598a8a956a)) + ## [0.14.0](https://github.com/eslint/json/compare/json-v0.13.2...json-v0.14.0) (2025-11-04) diff --git a/jsr.json b/jsr.json index ec35108..3327bca 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/json", - "version": "0.14.0", + "version": "0.14.1", "exports": "./dist/esm/index.js", "publish": { "include": [ diff --git a/package.json b/package.json index be6db03..2b4d326 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/json", - "version": "0.14.0", + "version": "0.14.1", "description": "JSON linting plugin for ESLint", "author": "Nicholas C. Zakas", "type": "module", diff --git a/src/index.js b/src/index.js index 9f0bd09..bcfd395 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: "0.14.0", // x-release-please-version + version: "0.14.1", // x-release-please-version }, languages: { json: new JSONLanguage({ mode: "json" }),