diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 64f3cdd..76d5538 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.8.0" + ".": "0.9.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 79075ca..3384f48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.9.0](https://github.com/eslint/json/compare/json-v0.8.0...json-v0.9.0) (2024-12-09) + + +### Features + +* Add top-level-interop rule ([#69](https://github.com/eslint/json/issues/69)) ([af56d6c](https://github.com/eslint/json/commit/af56d6ce6bff9d073aedd7f07c3ec0248ec3b4e9)) +* Catch more unsafe numbers ([#71](https://github.com/eslint/json/issues/71)) ([5ffc7c0](https://github.com/eslint/json/commit/5ffc7c0ead359c60a0cb5b2b4fdb522846933853)) + ## [0.8.0](https://github.com/eslint/json/compare/json-v0.7.0...json-v0.8.0) (2024-11-23) diff --git a/jsr.json b/jsr.json index 4868429..20966c6 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/json", - "version": "0.8.0", + "version": "0.9.0", "exports": "./dist/esm/index.js", "publish": { "include": [ diff --git a/package.json b/package.json index fc3da65..debae3a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/json", - "version": "0.8.0", + "version": "0.9.0", "description": "JSON linting plugin for ESLint", "author": "Nicholas C. Zakas", "type": "module", diff --git a/src/index.js b/src/index.js index 3006f9b..9bf46cf 100644 --- a/src/index.js +++ b/src/index.js @@ -22,7 +22,7 @@ import topLevelInterop from "./rules/top-level-interop.js"; const plugin = { meta: { name: "@eslint/json", - version: "0.8.0", // x-release-please-version + version: "0.9.0", // x-release-please-version }, languages: { json: new JSONLanguage({ mode: "json" }),