diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f367f6cd..cd52c1e8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "7.4.1" + ".": "7.5.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3caa111a..3377f256 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [7.5.0](https://github.com/eslint/markdown/compare/v7.4.1...v7.5.0) (2025-10-22) + + +### Features + +* handle CR and CRLF in `no-missing-atx-heading-space` ([#555](https://github.com/eslint/markdown/issues/555)) ([a869d98](https://github.com/eslint/markdown/commit/a869d98ba85eecadd3b11c9fafaa07ee9b1f6a62)) + ## [7.4.1](https://github.com/eslint/markdown/compare/v7.4.0...v7.4.1) (2025-10-20) diff --git a/jsr.json b/jsr.json index 2e3ac91c..33464f58 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/markdown", - "version": "7.4.1", + "version": "7.5.0", "exports": "./dist/esm/index.js", "publish": { "include": [ diff --git a/package.json b/package.json index 17ff7347..5af2f895 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/markdown", - "version": "7.4.1", + "version": "7.5.0", "description": "The official ESLint language plugin for Markdown", "license": "MIT", "author": { diff --git a/src/index.js b/src/index.js index b8441f7f..4ddf511b 100644 --- a/src/index.js +++ b/src/index.js @@ -53,7 +53,7 @@ let recommendedPlugins, processorPlugins; const plugin = { meta: { name: "@eslint/markdown", - version: "7.4.1", // x-release-please-version + version: "7.5.0", // x-release-please-version }, processors: { markdown: processor, diff --git a/src/processor.js b/src/processor.js index 77ddbe4c..fa1ce864 100644 --- a/src/processor.js +++ b/src/processor.js @@ -469,7 +469,7 @@ function postprocess(messages, filename) { export const processor = { meta: { name: "@eslint/markdown/markdown", - version: "7.4.1", // x-release-please-version + version: "7.5.0", // x-release-please-version }, preprocess, postprocess,