Skip to content

Commit 7c2d562

Browse files
chore: release 7.4.0 πŸš€ (#539)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent d6621a7 commit 7c2d562

File tree

6 files changed

+21
-5
lines changed

6 files changed

+21
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "7.3.0"
2+
".": "7.4.0"
33
}

β€ŽCHANGELOG.mdβ€Ž

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

3+
## [7.4.0](https://github.com/eslint/markdown/compare/v7.3.0...v7.4.0) (2025-10-06)
4+
5+
6+
### Features
7+
8+
* add support for `getLocFromIndex` and `getIndexFromLoc` ([#376](https://github.com/eslint/markdown/issues/376)) ([d634f82](https://github.com/eslint/markdown/commit/d634f820535d68579e62df46a0653ad67d912404))
9+
* export `MarkdownLanguage` from `index.js` ([#538](https://github.com/eslint/markdown/issues/538)) ([a5d78d5](https://github.com/eslint/markdown/commit/a5d78d5f4f054bb783827ec9d62fd302518572ba))
10+
11+
12+
### Bug Fixes
13+
14+
* add `null` check and use `getLocFromIndex` in `require-alt-text` ([#543](https://github.com/eslint/markdown/issues/543)) ([41ae6c8](https://github.com/eslint/markdown/commit/41ae6c850af3e51bde15eeab02ffc1c85a12e539))
15+
* correct the return type of `applyInlineConfig` ([#548](https://github.com/eslint/markdown/issues/548)) ([d6621a7](https://github.com/eslint/markdown/commit/d6621a744ea601bcaef4a3b74354dca51b1745b7))
16+
* report locations in `no-multiple-h1` and `require-alt-text` ([#551](https://github.com/eslint/markdown/issues/551)) ([ec30c7d](https://github.com/eslint/markdown/commit/ec30c7d3aed506c13d5a2ac277fbc079427fb0d3))
17+
* wrong location reporting in `no-invalid-label-refs` ([#545](https://github.com/eslint/markdown/issues/545)) ([e0f7d23](https://github.com/eslint/markdown/commit/e0f7d23a485bc39624b330209c1cb6f904f781c5))
18+
319
## [7.3.0](https://github.com/eslint/markdown/compare/v7.2.0...v7.3.0) (2025-09-22)
420

521

β€Ž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.3.0",
3+
"version": "7.4.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": "7.3.0",
3+
"version": "7.4.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
@@ -53,7 +53,7 @@ let recommendedPlugins, processorPlugins;
5353
const plugin = {
5454
meta: {
5555
name: "@eslint/markdown",
56-
version: "7.3.0", // x-release-please-version
56+
version: "7.4.0", // 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.3.0", // x-release-please-version
472+
version: "7.4.0", // x-release-please-version
473473
},
474474
preprocess,
475475
postprocess,

0 commit comments

Comments
Β (0)