Skip to content

Commit 2e9536f

Browse files
chore: release 1.0.0 πŸš€ (#184)
Co-authored-by: ESLint Bot <nicholas+eslintbot@nczconsulting.com>
1 parent 68847a5 commit 2e9536f

5 files changed

Lines changed: 33 additions & 4 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.14.0"
2+
".": "1.0.0"
33
}

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# Changelog
22

3+
## [1.0.0](https://github.com/eslint/json/compare/json-v0.14.0...json-v1.0.0) (2026-01-28)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* export types from main entry and remove `/types` export ([#198](https://github.com/eslint/json/issues/198))
9+
* remove `rollup`, extraneous types and migrate to ESM-only ([#197](https://github.com/eslint/json/issues/197))
10+
* Require Node.js ^20.19.0 || ^22.13.0 || >=24 ([#165](https://github.com/eslint/json/issues/165))
11+
12+
### Features
13+
14+
* export types from main entry and remove `/types` export ([#198](https://github.com/eslint/json/issues/198)) ([368c47b](https://github.com/eslint/json/commit/368c47beabfb14528e74e14afbc2917ee79b5bba))
15+
* Require Node.js ^20.19.0 || ^22.13.0 || &gt;=24 ([#165](https://github.com/eslint/json/issues/165)) ([019fbcd](https://github.com/eslint/json/commit/019fbcd351d159a0c8ba10f58cbbe731069859fb))
16+
17+
18+
### Bug Fixes
19+
20+
* add missing `name` property to `recommended` config ([#189](https://github.com/eslint/json/issues/189)) ([a3c26ca](https://github.com/eslint/json/commit/a3c26caccd210fa0762acff77fcb12d81c570b5a))
21+
* display raw key in the message ([#179](https://github.com/eslint/json/issues/179)) ([3d63c38](https://github.com/eslint/json/commit/3d63c38fd2000418aceee64feb054b598a8a956a))
22+
* program crashes in `no-unsafe-values` ([#194](https://github.com/eslint/json/issues/194)) ([8a536d2](https://github.com/eslint/json/commit/8a536d2ae1dbad4c3d589dbcdd88a6c472df0dae))
23+
* remove `rollup`, extraneous types and migrate to ESM-only ([#197](https://github.com/eslint/json/issues/197)) ([55edfb9](https://github.com/eslint/json/commit/55edfb90cd8b2e892cbc5b7cd5a2f14fcbc0593f))
24+
* update `@eslint/core` to `v1.0.0` and adjust tests ([#190](https://github.com/eslint/json/issues/190)) ([ba31cc2](https://github.com/eslint/json/commit/ba31cc20f241d20979573e4b1c01b7c418a71f69))
25+
* update eslint ([#200](https://github.com/eslint/json/issues/200)) ([8d94c4a](https://github.com/eslint/json/commit/8d94c4ac54a1a09ec490bbcc5bec5fd91c3cf1d2))
26+
27+
28+
### Miscellaneous Chores
29+
30+
* Bump version to 1.0.0 ([4f63024](https://github.com/eslint/json/commit/4f6302468d2c31686b5198da479b6fc1183dff95))
31+
332
## [0.14.0](https://github.com/eslint/json/compare/json-v0.13.2...json-v0.14.0) (2025-11-04)
433

534

β€Žjsr.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/json",
3-
"version": "0.14.0",
3+
"version": "1.0.0",
44
"exports": "./dist/index.js",
55
"publish": {
66
"include": [

β€Žpackage.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/json",
3-
"version": "0.14.0",
3+
"version": "1.0.0",
44
"description": "JSON linting plugin for ESLint",
55
"author": "Nicholas C. Zakas",
66
"type": "module",

β€Žsrc/index.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import rules from "./build/rules.js";
1919
const plugin = {
2020
meta: {
2121
name: "@eslint/json",
22-
version: "0.14.0", // x-release-please-version
22+
version: "1.0.0", // x-release-please-version
2323
},
2424
languages: {
2525
json: new JSONLanguage({ mode: "json" }),

0 commit comments

Comments
Β (0)