Skip to content

Commit c7b7b5b

Browse files
authored
chore: release 1.1.0 πŸš€ (#214)
1 parent 644f8b0 commit c7b7b5b

5 files changed

Lines changed: 17 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-
".": "1.0.1"
2+
".": "1.1.0"
33
}

β€ŽCHANGELOG.mdβ€Ž

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

3+
## [1.1.0](https://github.com/eslint/json/compare/json-v1.0.1...json-v1.1.0) (2026-03-09)
4+
5+
6+
### Features
7+
8+
* implement autofix for `no-unnormalized-keys` ([#151](https://github.com/eslint/json/issues/151)) ([fc3beec](https://github.com/eslint/json/commit/fc3beecdb782847d62fa729fe94ade5cf8ebae5f))
9+
10+
11+
### Bug Fixes
12+
13+
* allow `JSONRuleDefinition` to report on tokens ([#210](https://github.com/eslint/json/issues/210)) ([87ea56f](https://github.com/eslint/json/commit/87ea56f17fb6a1c9a41cab29ae49459e77c15eac))
14+
* update eslint ([#218](https://github.com/eslint/json/issues/218)) ([171d293](https://github.com/eslint/json/commit/171d29329639098d26bcca86f10d8a3b6eef2113))
15+
316
## [1.0.1](https://github.com/eslint/json/compare/json-v1.0.0...json-v1.0.1) (2026-02-10)
417

518

β€Ž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": "1.0.1",
3+
"version": "1.1.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": "1.0.1",
3+
"version": "1.1.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: "1.0.1", // x-release-please-version
22+
version: "1.1.0", // x-release-please-version
2323
},
2424
languages: {
2525
json: new JSONLanguage({ mode: "json" }),

0 commit comments

Comments
Β (0)