Skip to content

Commit c2b139f

Browse files
chore: release 6.4.1 🚀
1 parent 3c6dcd6 commit c2b139f

File tree

6 files changed

+12
-5
lines changed

6 files changed

+12
-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.4.1"
33
}

‎CHANGELOG.md

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

3+
## [6.4.1](https://github.com/eslint/markdown/compare/v6.4.0...v6.4.1) (2025-05-01)
4+
5+
6+
### Bug Fixes
7+
8+
* `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))
9+
310
## [6.4.0](https://github.com/eslint/markdown/compare/v6.3.0...v6.4.0) (2025-04-17)
411

512

‎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.4.1",
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.4.1",
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.4.1", // 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.4.1", // x-release-please-version
471471
},
472472
preprocess,
473473
postprocess,

0 commit comments

Comments
 (0)