Skip to content

Commit 659bbeb

Browse files
chore: release 0.7.0 🚀 (#48)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent be59c35 commit 659bbeb

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.6.0"
2+
".": "0.7.0"
33
}

Diff for: ‎CHANGELOG.md

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

3+
## [0.7.0](https://github.com/eslint/json/compare/json-v0.6.0...json-v0.7.0) (2024-11-17)
4+
5+
6+
### Features
7+
8+
* enable `no-unsafe-values` and add it to recommended configuration ([#51](https://github.com/eslint/json/issues/51)) ([72273f5](https://github.com/eslint/json/commit/72273f5dc0461505989a278a1f16b88d64bc8d7d))
9+
* rule no-unsafe-values ([#30](https://github.com/eslint/json/issues/30)) ([6988e5c](https://github.com/eslint/json/commit/6988e5c1445bbca10b1988ca2d9949b4bc66378c))
10+
11+
12+
### Bug Fixes
13+
14+
* Upgrade Momoa to fix parsing errors ([#50](https://github.com/eslint/json/issues/50)) ([3723a07](https://github.com/eslint/json/commit/3723a071a3bae296d2dbe66684b9d62832f099ad))
15+
316
## [0.6.0](https://github.com/eslint/json/compare/json-v0.5.0...json-v0.6.0) (2024-10-31)
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.6.0",
3+
"version": "0.7.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.6.0",
3+
"version": "0.7.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
@@ -20,7 +20,7 @@ import noUnsafeValues from "./rules/no-unsafe-values.js";
2020
const plugin = {
2121
meta: {
2222
name: "@eslint/json",
23-
version: "0.6.0", // x-release-please-version
23+
version: "0.7.0", // x-release-please-version
2424
},
2525
languages: {
2626
json: new JSONLanguage({ mode: "json" }),

0 commit comments

Comments
 (0)