Skip to content

Commit d7fb66e

Browse files
chore: release 6.4.0 πŸš€ (#326)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ba108f7 commit d7fb66e

File tree

6 files changed

+22
-5
lines changed

6 files changed

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

β€ŽCHANGELOG.mdβ€Ž

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

3+
## [6.4.0](https://github.com/eslint/markdown/compare/v6.3.0...v6.4.0) (2025-04-17)
4+
5+
6+
### Features
7+
8+
* add missing `mdast` types to `MarkdownRuleVisitor` ([#334](https://github.com/eslint/markdown/issues/334)) ([fc8ba03](https://github.com/eslint/markdown/commit/fc8ba0314696c2f22233a9870360e2e9a5799ccc))
9+
* Create type definitions for rules ([#324](https://github.com/eslint/markdown/issues/324)) ([5f11a3d](https://github.com/eslint/markdown/commit/5f11a3d071103f4103310fc6916508eb7cb76def))
10+
* export `MarkdownRuleDefinition` type ([#333](https://github.com/eslint/markdown/issues/333)) ([13dfd5e](https://github.com/eslint/markdown/commit/13dfd5ec279d1db3cbd1ef2b6bf5d00799371090))
11+
* support `eslint` config comments ([#332](https://github.com/eslint/markdown/issues/332)) ([f697540](https://github.com/eslint/markdown/commit/f6975405df4899002053988b2771066a3f2426bc))
12+
* support front matter ([#328](https://github.com/eslint/markdown/issues/328)) ([35a979c](https://github.com/eslint/markdown/commit/35a979c16a0762024ba7150439a7628f56b76a51))
13+
14+
15+
### Bug Fixes
16+
17+
* enhance fenced code language rule to support tilde as a delimiter ([#344](https://github.com/eslint/markdown/issues/344)) ([852645e](https://github.com/eslint/markdown/commit/852645ee070c5c85a45c740a0925fb70768cc840))
18+
* replace `IMarkdownSourceCode` with `MarkdownSourceCode` ([#336](https://github.com/eslint/markdown/issues/336)) ([ec2846b](https://github.com/eslint/markdown/commit/ec2846be8d0e0a3c216ea471eda62a1ce1a990a7))
19+
320
## [6.3.0](https://github.com/eslint/markdown/compare/v6.2.2...v6.3.0) (2025-03-04)
421

522

β€Ž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.3.0",
3+
"version": "6.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": "6.3.0",
3+
"version": "6.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
@@ -60,7 +60,7 @@ let recommendedPlugins, processorPlugins;
6060
const plugin = {
6161
meta: {
6262
name: "@eslint/markdown",
63-
version: "6.3.0", // x-release-please-version
63+
version: "6.4.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.3.0", // x-release-please-version
470+
version: "6.4.0", // x-release-please-version
471471
},
472472
preprocess,
473473
postprocess,

0 commit comments

Comments
Β (0)