From 5e04092576a5ddd01f92fb9a0cdf09605394d292 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Dec 2025 16:10:27 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20release=201.0.0=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .release-please-manifest.json | 2 +- CHANGELOG.md | 22 ++++++++++++++++++++++ jsr.json | 2 +- package.json | 2 +- src/index.js | 2 +- 5 files changed, 26 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 727e2be..37fcefa 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.14.0" + ".": "1.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e299217..3845746 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [1.0.0](https://github.com/eslint/json/compare/json-v0.14.0...json-v1.0.0) (2025-12-02) + + +### ⚠ BREAKING CHANGES + +* Require Node.js ^20.19.0 || ^22.13.0 || >=24 ([#165](https://github.com/eslint/json/issues/165)) + +### Features + +* Require Node.js ^20.19.0 || ^22.13.0 || >=24 ([#165](https://github.com/eslint/json/issues/165)) ([019fbcd](https://github.com/eslint/json/commit/019fbcd351d159a0c8ba10f58cbbe731069859fb)) + + +### Bug Fixes + +* add missing `name` property to `recommended` config ([#189](https://github.com/eslint/json/issues/189)) ([a3c26ca](https://github.com/eslint/json/commit/a3c26caccd210fa0762acff77fcb12d81c570b5a)) +* display raw key in the message ([#179](https://github.com/eslint/json/issues/179)) ([3d63c38](https://github.com/eslint/json/commit/3d63c38fd2000418aceee64feb054b598a8a956a)) + + +### Miscellaneous Chores + +* Bump version to 1.0.0 ([4f63024](https://github.com/eslint/json/commit/4f6302468d2c31686b5198da479b6fc1183dff95)) + ## [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..fdf3900 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/json", - "version": "0.14.0", + "version": "1.0.0", "exports": "./dist/esm/index.js", "publish": { "include": [ diff --git a/package.json b/package.json index 6662a2d..a10a840 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/json", - "version": "0.14.0", + "version": "1.0.0", "description": "JSON linting plugin for ESLint", "author": "Nicholas C. Zakas", "type": "module", diff --git a/src/index.js b/src/index.js index ba91cf0..b336c47 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: "1.0.0", // x-release-please-version }, languages: { json: new JSONLanguage({ mode: "json" }),