Skip to content

Commit 820a338

Browse files
chore: release 6.5.0 🚀
1 parent fbf8235 commit 820a338

File tree

6 files changed

+24
-5
lines changed

6 files changed

+24
-5
lines changed

‎.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "6.4.0"
2+
".": "6.5.0"
33
}

‎CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## [6.5.0](https://github.com/eslint/markdown/compare/v6.4.0...v6.5.0) (2025-05-29)
4+
5+
6+
### Features
7+
8+
* add `no-missing-atx-heading-space` rule ([#371](https://github.com/eslint/markdown/issues/371)) ([84c87c4](https://github.com/eslint/markdown/commit/84c87c407bdfb64694581afb26066a5b233bd59c))
9+
* add no-empty-definitions rule ([#364](https://github.com/eslint/markdown/issues/364)) ([cb5a956](https://github.com/eslint/markdown/commit/cb5a95666524e3c26650371bfdcd59e15cae4053))
10+
* add no-multiple-h1 rule ([#377](https://github.com/eslint/markdown/issues/377)) ([d7c88e8](https://github.com/eslint/markdown/commit/d7c88e898b251cb1bf9eb3b19075b6b6c4a4d255))
11+
* add require-alt-text rule ([#368](https://github.com/eslint/markdown/issues/368)) ([32d8cbd](https://github.com/eslint/markdown/commit/32d8cbd8b6d2d121225b5291c2f9a0ea6c2ccd00))
12+
* create `no-duplicate-definitions` ([#360](https://github.com/eslint/markdown/issues/360)) ([18c7d77](https://github.com/eslint/markdown/commit/18c7d776c768b901a0049b6e9bd7cf9e060ae835))
13+
* create `no-empty-images` ([#357](https://github.com/eslint/markdown/issues/357)) ([23e4ff0](https://github.com/eslint/markdown/commit/23e4ff0d7be9e10ce017357cb5f8e15276c6c404))
14+
15+
16+
### Bug Fixes
17+
18+
* `no-invalid-label-refs` do not report correct position ([#366](https://github.com/eslint/markdown/issues/366)) ([ed01747](https://github.com/eslint/markdown/commit/ed01747d29eed0b1379211bb1d97d3dbff3389c8))
19+
* `no-missing-label-refs` rule does not respect escaping ([#348](https://github.com/eslint/markdown/issues/348)) ([cb6b437](https://github.com/eslint/markdown/commit/cb6b4376e94f2f89a100352d01857ad08deff652))
20+
* update `require-alt-text` rule to ignore commented images ([#385](https://github.com/eslint/markdown/issues/385)) ([b2fc801](https://github.com/eslint/markdown/commit/b2fc801727eb7ed554e74a9cf690c4777b66ff72))
21+
322
## [6.4.0](https://github.com/eslint/markdown/compare/v6.3.0...v6.4.0) (2025-04-17)
423

524

‎jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/markdown",
3-
"version": "6.4.0",
3+
"version": "6.5.0",
44
"exports": "./dist/esm/index.js",
55
"publish": {
66
"include": [

‎package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/markdown",
3-
"version": "6.4.0",
3+
"version": "6.5.0",
44
"description": "The official ESLint language plugin for Markdown",
55
"license": "MIT",
66
"author": {

‎src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ let recommendedPlugins, processorPlugins;
6060
const plugin = {
6161
meta: {
6262
name: "@eslint/markdown",
63-
version: "6.4.0", // x-release-please-version
63+
version: "6.5.0", // x-release-please-version
6464
},
6565
processors: {
6666
markdown: processor,

‎src/processor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ function postprocess(messages, filename) {
467467
export const processor = {
468468
meta: {
469469
name: "@eslint/markdown/markdown",
470-
version: "6.4.0", // x-release-please-version
470+
version: "6.5.0", // x-release-please-version
471471
},
472472
preprocess,
473473
postprocess,

0 commit comments

Comments
 (0)