diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f1c1e58..bcd0522 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.5.0" + ".": "0.6.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index cdd5b22..31dfb2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.6.0](https://github.com/eslint/json/compare/json-v0.5.0...json-v0.6.0) (2024-10-31) + + +### Features + +* Add allowTrailingCommas option for JSONC ([#42](https://github.com/eslint/json/issues/42)) ([c94953b](https://github.com/eslint/json/commit/c94953b702a1d9c0c48249f1bda727e2130841c8)) + ## [0.5.0](https://github.com/eslint/json/compare/json-v0.4.1...json-v0.5.0) (2024-10-02) diff --git a/jsr.json b/jsr.json index 5913a23..5ae69a9 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/json", - "version": "0.5.0", + "version": "0.6.0", "exports": "./dist/esm/index.js", "publish": { "include": [ diff --git a/package.json b/package.json index 1c4a513..9f13ea1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/json", - "version": "0.5.0", + "version": "0.6.0", "description": "JSON linting plugin for ESLint", "author": "Nicholas C. Zakas", "type": "module", diff --git a/src/index.js b/src/index.js index 6cb1fce..a92ed19 100644 --- a/src/index.js +++ b/src/index.js @@ -19,7 +19,7 @@ import noEmptyKeys from "./rules/no-empty-keys.js"; const plugin = { meta: { name: "@eslint/json", - version: "0.5.0", // x-release-please-version + version: "0.6.0", // x-release-please-version }, languages: { json: new JSONLanguage({ mode: "json" }),