From 2266eeb34025b4ed18b1d645bdee560b6239a2c6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 21 Aug 2024 10:03:35 -0400 Subject: [PATCH] =?UTF-8?q?chore:=20release=200.4.0=20=F0=9F=9A=80=20(#18)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ jsr.json | 2 +- package.json | 2 +- src/index.js | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0ee8c01..2537c1f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.0" + ".": "0.4.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b5c5d8..d795c8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.4.0](https://github.com/eslint/json/compare/json-v0.3.0...json-v0.4.0) (2024-08-20) + + +### Features + +* Export internal constructs for other plugin authors ([#17](https://github.com/eslint/json/issues/17)) ([ad729f0](https://github.com/eslint/json/commit/ad729f0c60d42a84b2c87da52a6d2456b5211b48)) + ## [0.3.0](https://github.com/eslint/json/compare/json-v0.2.0...json-v0.3.0) (2024-07-25) diff --git a/jsr.json b/jsr.json index fbfb8e6..d458dc5 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/json", - "version": "0.3.0", + "version": "0.4.0", "exports": "./dist/esm/index.js", "publish": { "include": [ diff --git a/package.json b/package.json index da0e658..9e37f55 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/json", - "version": "0.3.0", + "version": "0.4.0", "description": "JSON linting plugin for ESLint", "author": "Nicholas C. Zakas", "type": "module", diff --git a/src/index.js b/src/index.js index 061887a..8a12f2d 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.3.0", // x-release-please-version + version: "0.4.0", // x-release-please-version }, languages: { json: new JSONLanguage({ mode: "json" }),