Skip to content

Commit 201c70d

Browse files
chore: release 0.9.0 🚀 (#72)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 6a5d099 commit 201c70d

5 files changed

+12
-4
lines changed

‎.release-please-manifest.json

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

‎CHANGELOG.md

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

3+
## [0.9.0](https://github.com/eslint/json/compare/json-v0.8.0...json-v0.9.0) (2024-12-09)
4+
5+
6+
### Features
7+
8+
* Add top-level-interop rule ([#69](https://github.com/eslint/json/issues/69)) ([af56d6c](https://github.com/eslint/json/commit/af56d6ce6bff9d073aedd7f07c3ec0248ec3b4e9))
9+
* Catch more unsafe numbers ([#71](https://github.com/eslint/json/issues/71)) ([5ffc7c0](https://github.com/eslint/json/commit/5ffc7c0ead359c60a0cb5b2b4fdb522846933853))
10+
311
## [0.8.0](https://github.com/eslint/json/compare/json-v0.7.0...json-v0.8.0) (2024-11-23)
412

513

‎jsr.json

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

‎package.json

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

‎src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import topLevelInterop from "./rules/top-level-interop.js";
2222
const plugin = {
2323
meta: {
2424
name: "@eslint/json",
25-
version: "0.8.0", // x-release-please-version
25+
version: "0.9.0", // x-release-please-version
2626
},
2727
languages: {
2828
json: new JSONLanguage({ mode: "json" }),

0 commit comments

Comments
 (0)