Skip to content

Commit d613dde

Browse files
chore: release 0.11.0 🚀 (#80)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 10882ff commit d613dde

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
lines changed

Diff for: ‎.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.10.0"
2+
".": "0.11.0"
33
}

Diff for: ‎CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [0.11.0](https://github.com/eslint/json/compare/json-v0.10.0...json-v0.11.0) (2025-03-14)
4+
5+
6+
### Features
7+
8+
* Add `types` to exports ([#84](https://github.com/eslint/json/issues/84)) ([d9eab9e](https://github.com/eslint/json/commit/d9eab9ec3a733b561f55235eb71a611c7d84ebbb))
9+
10+
11+
### Bug Fixes
12+
13+
* Update types and apply to all rules ([#86](https://github.com/eslint/json/issues/86)) ([10882ff](https://github.com/eslint/json/commit/10882ffe9c39cdd866be51801f9950f4a010cd87))
14+
* Use updated types from @eslint/core ([#66](https://github.com/eslint/json/issues/66)) ([460e7c7](https://github.com/eslint/json/commit/460e7c707ed30fc41df280e40f300bafd5a3cae2))
15+
316
## [0.10.0](https://github.com/eslint/json/compare/json-v0.9.1...json-v0.10.0) (2025-01-19)
417

518

Diff for: ‎jsr.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/json",
3-
"version": "0.10.0",
3+
"version": "0.11.0",
44
"exports": "./dist/esm/index.js",
55
"publish": {
66
"include": [

Diff for: ‎package.json

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

Diff for: ‎src/index.js

+1-1
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.10.0", // x-release-please-version
26+
version: "0.11.0", // x-release-please-version
2727
},
2828
languages: {
2929
json: new JSONLanguage({ mode: "json" }),

0 commit comments

Comments
 (0)