diff --git a/.changeset/sour-memes-happen.md b/.changeset/sour-memes-happen.md deleted file mode 100644 index 18fea3b..0000000 --- a/.changeset/sour-memes-happen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"jsonc-eslint-parser": patch ---- - -improve type compatibility with eslint diff --git a/CHANGELOG.md b/CHANGELOG.md index 3545a9c..c5901e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # jsonc-eslint-parser +## 2.4.1 + +### Patch Changes + +- [#228](https://github.com/ota-meshi/jsonc-eslint-parser/pull/228) [`46c1f97`](https://github.com/ota-meshi/jsonc-eslint-parser/commit/46c1f97d50daf959df636e0681a109fe09a98138) Thanks [@michaelfaith](https://github.com/michaelfaith)! - improve type compatibility with eslint + ## 2.4.0 ### Minor Changes diff --git a/package.json b/package.json index 4b283c7..b17bc03 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jsonc-eslint-parser", - "version": "2.4.0", + "version": "2.4.1", "description": "JSON, JSONC and JSON5 parser for use with ESLint plugins", "main": "lib/index.js", "files": [ diff --git a/src/meta.ts b/src/meta.ts index 6be53d0..6eb6a73 100644 --- a/src/meta.ts +++ b/src/meta.ts @@ -1,5 +1,5 @@ // IMPORTANT! // This file has been automatically generated, // in order to update its content execute "npm run build:meta" -export const name = "jsonc-eslint-parser"; -export const version = "2.4.0"; +export const name = "jsonc-eslint-parser" as const; +export const version = "2.4.1" as const;