Skip to content

Commit 187804b

Browse files
chore: release 6.6.0 🚀 (#410)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ae547ab commit 187804b

File tree

6 files changed

+22
-5
lines changed

6 files changed

+22
-5
lines changed

‎.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "6.5.0"
2+
".": "6.6.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.6.0](https://github.com/eslint/markdown/compare/v6.5.0...v6.6.0) (2025-06-20)
4+
5+
6+
### Features
7+
8+
* add checkSiblingsOnly option to no-duplicate-headings rule ([#393](https://github.com/eslint/markdown/issues/393)) ([2512729](https://github.com/eslint/markdown/commit/25127297f0ee8f63b860a42538cec9612e154b0b))
9+
* add JSON frontmatter support ([#411](https://github.com/eslint/markdown/issues/411)) ([8b77e69](https://github.com/eslint/markdown/commit/8b77e6993ed045482a966470d906d9636b1b4abc))
10+
* add no-bare-urls rule ([#418](https://github.com/eslint/markdown/issues/418)) ([5149927](https://github.com/eslint/markdown/commit/514992754650499cf1c8d7e4f56a1e7666a3d384))
11+
* add no-missing-link-fragments rule ([#380](https://github.com/eslint/markdown/issues/380)) ([70e7dac](https://github.com/eslint/markdown/commit/70e7dacab279579c57396589da798d7e2e3a0a50))
12+
* add no-reversed-media-syntax rule ([#398](https://github.com/eslint/markdown/issues/398)) ([ae547ab](https://github.com/eslint/markdown/commit/ae547ab935307f5bea60ea3d0e1ccefdc8fc43f6))
13+
* update `no-multiple-h1` rule to recognize JSON frontmatter ([#413](https://github.com/eslint/markdown/issues/413)) ([33dda18](https://github.com/eslint/markdown/commit/33dda184d2919ea33ba850a018b6972429aeb5c6))
14+
15+
16+
### Bug Fixes
17+
18+
* ensure ATX headings follow spec for space after hash characters ([#421](https://github.com/eslint/markdown/issues/421)) ([bab9670](https://github.com/eslint/markdown/commit/bab96707428ee694888cfaa3f22ae8823a7880e0))
19+
320
## [6.5.0](https://github.com/eslint/markdown/compare/v6.4.0...v6.5.0) (2025-06-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.5.0",
3+
"version": "6.6.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.5.0",
3+
"version": "6.6.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.5.0", // x-release-please-version
63+
version: "6.6.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.5.0", // x-release-please-version
470+
version: "6.6.0", // x-release-please-version
471471
},
472472
preprocess,
473473
postprocess,

0 commit comments

Comments
 (0)