diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e7ca613..64f3cdd 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.7.0" + ".": "0.8.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e0a86f7..79075ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.8.0](https://github.com/eslint/json/compare/json-v0.7.0...json-v0.8.0) (2024-11-23) + + +### Features + +* rule no-unnormalized-keys ([#63](https://github.com/eslint/json/issues/63)) ([c57882e](https://github.com/eslint/json/commit/c57882e1c3b51f00b94da4ed9b40d5cf2e4d6847)) + + +### Bug Fixes + +* add type tests ([#65](https://github.com/eslint/json/issues/65)) ([a6c0bc9](https://github.com/eslint/json/commit/a6c0bc9db1e265484c275860fdb41fcfd8aefaf2)) +* expose `plugin.configs` in types ([#59](https://github.com/eslint/json/issues/59)) ([1fd0452](https://github.com/eslint/json/commit/1fd0452e97554ec4e696d2105f68df36fbe7f260)) + ## [0.7.0](https://github.com/eslint/json/compare/json-v0.6.0...json-v0.7.0) (2024-11-17) diff --git a/jsr.json b/jsr.json index 549d89e..4868429 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/json", - "version": "0.7.0", + "version": "0.8.0", "exports": "./dist/esm/index.js", "publish": { "include": [ diff --git a/package.json b/package.json index e4b46ad..bb673aa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/json", - "version": "0.7.0", + "version": "0.8.0", "description": "JSON linting plugin for ESLint", "author": "Nicholas C. Zakas", "type": "module", diff --git a/src/index.js b/src/index.js index 3ca4f8c..5113fe1 100644 --- a/src/index.js +++ b/src/index.js @@ -21,7 +21,7 @@ import noUnnormalizedKeys from "./rules/no-unnormalized-keys.js"; const plugin = { meta: { name: "@eslint/json", - version: "0.7.0", // x-release-please-version + version: "0.8.0", // x-release-please-version }, languages: { json: new JSONLanguage({ mode: "json" }),