Skip to content

Commit 2e864d4

Browse files
chore: release 6.4.0 🚀
1 parent 6bc0765 commit 2e864d4

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-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

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

3+
## [6.4.0](https://github.com/eslint/markdown/compare/v6.3.0...v6.4.0) (2025-04-07)
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+
313
## [6.3.0](https://github.com/eslint/markdown/compare/v6.2.2...v6.3.0) (2025-03-04)
414

515

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
@@ -59,7 +59,7 @@ let recommendedPlugins, processorPlugins;
5959
const plugin = {
6060
meta: {
6161
name: "@eslint/markdown",
62-
version: "6.3.0", // x-release-please-version
62+
version: "6.4.0", // x-release-please-version
6363
},
6464
processors: {
6565
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)