Skip to content

Commit b244928

Browse files
chore: release 6.4.0 🚀
1 parent ec2846b commit b244928

File tree

6 files changed

+20
-5
lines changed

6 files changed

+20
-5
lines changed

Diff for: ‎.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "6.3.0"
2+
".": "6.4.0"
33
}

Diff for: ‎CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## [6.4.0](https://github.com/eslint/markdown/compare/v6.3.0...v6.4.0) (2025-04-10)
4+
5+
6+
### Features
7+
8+
* Create type definitions for rules ([#324](https://github.com/eslint/markdown/issues/324)) ([5f11a3d](https://github.com/eslint/markdown/commit/5f11a3d071103f4103310fc6916508eb7cb76def))
9+
* export `MarkdownRuleDefinition` type ([#333](https://github.com/eslint/markdown/issues/333)) ([13dfd5e](https://github.com/eslint/markdown/commit/13dfd5ec279d1db3cbd1ef2b6bf5d00799371090))
10+
* support `eslint` config comments ([#332](https://github.com/eslint/markdown/issues/332)) ([f697540](https://github.com/eslint/markdown/commit/f6975405df4899002053988b2771066a3f2426bc))
11+
* support front matter ([#328](https://github.com/eslint/markdown/issues/328)) ([35a979c](https://github.com/eslint/markdown/commit/35a979c16a0762024ba7150439a7628f56b76a51))
12+
13+
14+
### Bug Fixes
15+
16+
* replace `IMarkdownSourceCode` with `MarkdownSourceCode` ([#336](https://github.com/eslint/markdown/issues/336)) ([ec2846b](https://github.com/eslint/markdown/commit/ec2846be8d0e0a3c216ea471eda62a1ce1a990a7))
17+
318
## [6.3.0](https://github.com/eslint/markdown/compare/v6.2.2...v6.3.0) (2025-03-04)
419

520

Diff for: ‎jsr.json

+1-1
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": [

Diff for: ‎package.json

+1-1
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": {

Diff for: ‎src/index.js

+1-1
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,

Diff for: ‎src/processor.js

+1-1
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)