Skip to content

Commit 42cca77

Browse files
chore: release 0.12.0 πŸš€ (#90)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent e59374c commit 42cca77

File tree

5 files changed

+20
-4
lines changed

5 files changed

+20
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.11.0"
2+
".": "0.12.0"
33
}

β€ŽCHANGELOG.mdβ€Ž

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

3+
## [0.12.0](https://github.com/eslint/json/compare/json-v0.11.0...json-v0.12.0) (2025-04-16)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Update package types for better reuse ([#91](https://github.com/eslint/json/issues/91))
9+
10+
### Features
11+
12+
* Update package types for better reuse ([#91](https://github.com/eslint/json/issues/91)) ([dce4601](https://github.com/eslint/json/commit/dce4601b1a40ceaeb4b61fbcbef0170a67b73e37))
13+
14+
15+
### Bug Fixes
16+
17+
* Update `types.ts` for compatibility with `verbatimModuleSyntax` ([#88](https://github.com/eslint/json/issues/88)) ([d099c78](https://github.com/eslint/json/commit/d099c78318f8ca9a426d233717728304418425a1))
18+
319
## [0.11.0](https://github.com/eslint/json/compare/json-v0.10.0...json-v0.11.0) (2025-03-14)
420

521

β€Ž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.11.0",
3+
"version": "0.12.0",
44
"exports": "./dist/esm/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.11.0",
3+
"version": "0.12.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
@@ -23,7 +23,7 @@ import topLevelInterop from "./rules/top-level-interop.js";
2323
const plugin = {
2424
meta: {
2525
name: "@eslint/json",
26-
version: "0.11.0", // x-release-please-version
26+
version: "0.12.0", // x-release-please-version
2727
},
2828
languages: {
2929
json: new JSONLanguage({ mode: "json" }),

0 commit comments

Comments
Β (0)