diff --git a/.changeset/khaki-squids-leave.md b/.changeset/khaki-squids-leave.md deleted file mode 100644 index 5656698e..00000000 --- a/.changeset/khaki-squids-leave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"eslint-mdx": patch ---- - -fix: parse error on void boolean attributes diff --git a/.changeset/proud-trainers-sort.md b/.changeset/proud-trainers-sort.md deleted file mode 100644 index bb7eb01a..00000000 --- a/.changeset/proud-trainers-sort.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"eslint-mdx": patch ---- - -fix: handle pure ESM robustly diff --git a/packages/eslint-mdx/CHANGELOG.md b/packages/eslint-mdx/CHANGELOG.md index b840b55e..1f862442 100644 --- a/packages/eslint-mdx/CHANGELOG.md +++ b/packages/eslint-mdx/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 2.0.5 + +### Patch Changes + +- [#431](https://github.com/mdx-js/eslint-mdx/pull/431) [`bebc564`](https://github.com/mdx-js/eslint-mdx/commit/bebc564fdf0587b2aa47bb13707031da676b851c) Thanks [@JounQin](https://github.com/JounQin)! - fix: parse error on void boolean attributes + +- [#428](https://github.com/mdx-js/eslint-mdx/pull/428) [`ff52be2`](https://github.com/mdx-js/eslint-mdx/commit/ff52be232611275307681a53c69ed40c3a419da1) Thanks [@JounQin](https://github.com/JounQin)! - fix: handle pure ESM robustly + ## 2.0.4 ### Patch Changes diff --git a/packages/eslint-mdx/package.json b/packages/eslint-mdx/package.json index 08c11dd4..2b953e04 100644 --- a/packages/eslint-mdx/package.json +++ b/packages/eslint-mdx/package.json @@ -1,6 +1,6 @@ { "name": "eslint-mdx", - "version": "2.0.4", + "version": "2.0.5", "description": "ESLint Parser for MDX", "repository": "git+https://github.com/mdx-js/eslint-mdx.git", "homepage": "https://github.com/mdx-js/eslint-mdx/blob/master/packages/eslint-mdx", diff --git a/packages/eslint-plugin-mdx/CHANGELOG.md b/packages/eslint-plugin-mdx/CHANGELOG.md index 9f831655..e0968cd8 100644 --- a/packages/eslint-plugin-mdx/CHANGELOG.md +++ b/packages/eslint-plugin-mdx/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 2.0.5 + +### Patch Changes + +- Updated dependencies [[`bebc564`](https://github.com/mdx-js/eslint-mdx/commit/bebc564fdf0587b2aa47bb13707031da676b851c), [`ff52be2`](https://github.com/mdx-js/eslint-mdx/commit/ff52be232611275307681a53c69ed40c3a419da1)]: + - eslint-mdx@2.0.5 + ## 2.0.4 ### Patch Changes diff --git a/packages/eslint-plugin-mdx/package.json b/packages/eslint-plugin-mdx/package.json index e7f8ed7c..9fc37a27 100644 --- a/packages/eslint-plugin-mdx/package.json +++ b/packages/eslint-plugin-mdx/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-mdx", - "version": "2.0.4", + "version": "2.0.5", "description": "ESLint Plugin for MDX", "repository": "git+https://github.com/mdx-js/eslint-mdx.git", "homepage": "https://github.com/mdx-js/eslint-mdx/blob/master/packages/eslint-plugin-mdx", @@ -31,7 +31,7 @@ "eslint": ">=8.0.0" }, "dependencies": { - "eslint-mdx": "^2.0.4", + "eslint-mdx": "^2.0.5", "eslint-plugin-markdown": "^3.0.0", "remark-mdx": "^2.1.3", "remark-parse": "^10.0.1",