diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0f6aa44..e1e352c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.1.1" + ".": "6.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f969d3a..36f8648 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [6.2.0](https://github.com/eslint/markdown/compare/v6.1.1...v6.2.0) (2024-10-03) + + +### Features + +* Add disable comment support ([#281](https://github.com/eslint/markdown/issues/281)) ([acdbd08](https://github.com/eslint/markdown/commit/acdbd08102a60d9521cb9c2c29917cf4b0a27e14)) + ## [6.1.1](https://github.com/eslint/markdown/compare/v6.1.0...v6.1.1) (2024-09-26) diff --git a/jsr.json b/jsr.json index 6f7bfb9..de95922 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/markdown", - "version": "6.1.1", + "version": "6.2.0", "exports": "./dist/esm/index.js", "publish": { "include": [ diff --git a/package.json b/package.json index 5b19e33..8ff77f9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/markdown", - "version": "6.1.1", + "version": "6.2.0", "description": "The official ESLint language plugin for Markdown", "license": "MIT", "author": { diff --git a/src/index.js b/src/index.js index 1a02776..99e2b41 100644 --- a/src/index.js +++ b/src/index.js @@ -53,7 +53,7 @@ const processorRulesConfig = { const plugin = { meta: { name: "@eslint/markdown", - version: "6.1.1", // x-release-please-version + version: "6.2.0", // x-release-please-version }, processors: { markdown: processor, diff --git a/src/processor.js b/src/processor.js index b38ed77..e9a5649 100644 --- a/src/processor.js +++ b/src/processor.js @@ -440,7 +440,7 @@ function postprocess(messages, filename) { export const processor = { meta: { name: "@eslint/markdown/markdown", - version: "6.1.1", // x-release-please-version + version: "6.2.0", // x-release-please-version }, preprocess, postprocess,