diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 466df71..2be9c43 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0" + ".": "0.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index cfe564c..0e419e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.2.0](https://github.com/eslint/json/compare/json-v0.1.0...json-v0.2.0) (2024-07-22) + + +### Features + +* Add getLoc and getRange to JSONSourceCode ([#13](https://github.com/eslint/json/issues/13)) ([2225f63](https://github.com/eslint/json/commit/2225f630284b601d4cfc4ecc19148121d6e11a3f)) +* Add meta info to plugin ([#12](https://github.com/eslint/json/issues/12)) ([f419757](https://github.com/eslint/json/commit/f419757b837fce5e37b29a2afe0b2885590ca8bd)) + ## [0.1.0](https://github.com/eslint/json/compare/json-v0.0.1...json-v0.1.0) (2024-07-06) diff --git a/jsr.json b/jsr.json index af1d68f..805c013 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/json", - "version": "0.1.0", + "version": "0.2.0", "exports": "./dist/esm/index.js", "publish": { "include": [ diff --git a/package.json b/package.json index 9265dbc..d2203f8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/json", - "version": "0.1.0", + "version": "0.2.0", "description": "JSON linting plugin for ESLint", "author": "Nicholas C. Zakas", "type": "module", diff --git a/src/index.js b/src/index.js index 26aeff0..47e9e54 100644 --- a/src/index.js +++ b/src/index.js @@ -18,7 +18,7 @@ import noEmptyKeys from "./rules/no-empty-keys.js"; const plugin = { meta: { name: "@eslint/json", - version: "0.1.0", // x-release-please-version + version: "0.2.0", // x-release-please-version }, languages: { json: new JSONLanguage({ mode: "json" }),