Skip to content

Commit 5c405a0

Browse files
chore: release 7.4.1 πŸš€
1 parent d1ad828 commit 5c405a0

File tree

6 files changed

+12
-5
lines changed

6 files changed

+12
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "7.4.0"
2+
".": "7.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+
## [7.4.1](https://github.com/eslint/markdown/compare/v7.4.0...v7.4.1) (2025-10-08)
4+
5+
6+
### Bug Fixes
7+
8+
* handle CR in `MarkdownSourceCode` and Front Matter util ([#554](https://github.com/eslint/markdown/issues/554)) ([d1ad828](https://github.com/eslint/markdown/commit/d1ad8284736b2747c9be8d64c417da11ca0b3eca))
9+
310
## [7.4.0](https://github.com/eslint/markdown/compare/v7.3.0...v7.4.0) (2025-10-06)
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": "7.4.0",
3+
"version": "7.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": "7.4.0",
3+
"version": "7.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
@@ -53,7 +53,7 @@ let recommendedPlugins, processorPlugins;
5353
const plugin = {
5454
meta: {
5555
name: "@eslint/markdown",
56-
version: "7.4.0", // x-release-please-version
56+
version: "7.4.1", // x-release-please-version
5757
},
5858
processors: {
5959
markdown: processor,

β€Žsrc/processor.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ function postprocess(messages, filename) {
469469
export const processor = {
470470
meta: {
471471
name: "@eslint/markdown/markdown",
472-
version: "7.4.0", // x-release-please-version
472+
version: "7.4.1", // x-release-please-version
473473
},
474474
preprocess,
475475
postprocess,

0 commit comments

Comments
Β (0)