Skip to content

Commit 05196f5

Browse files
chore: release 6.2.1 🚀 (#292)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ac1bc1c commit 05196f5

6 files changed

+12
-5
lines changed

‎.release-please-manifest.json

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

‎CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [6.2.1](https://github.com/eslint/markdown/compare/v6.2.0...v6.2.1) (2024-10-16)
4+
5+
6+
### Bug Fixes
7+
8+
* no-missing-label-refs should not crash on undefined labels ([#290](https://github.com/eslint/markdown/issues/290)) ([ac1bc1c](https://github.com/eslint/markdown/commit/ac1bc1c2615184128ecad07e44079213b4ecc7da))
9+
310
## [6.2.0](https://github.com/eslint/markdown/compare/v6.1.1...v6.2.0) (2024-10-03)
411

512

‎jsr.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/markdown",
3-
"version": "6.2.0",
3+
"version": "6.2.1",
44
"exports": "./dist/esm/index.js",
55
"publish": {
66
"include": [

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/markdown",
3-
"version": "6.2.0",
3+
"version": "6.2.1",
44
"description": "The official ESLint language plugin for Markdown",
55
"license": "MIT",
66
"author": {

‎src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const processorRulesConfig = {
5353
const plugin = {
5454
meta: {
5555
name: "@eslint/markdown",
56-
version: "6.2.0", // x-release-please-version
56+
version: "6.2.1", // x-release-please-version
5757
},
5858
processors: {
5959
markdown: processor,

‎src/processor.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ function postprocess(messages, filename) {
440440
export const processor = {
441441
meta: {
442442
name: "@eslint/markdown/markdown",
443-
version: "6.2.0", // x-release-please-version
443+
version: "6.2.1", // x-release-please-version
444444
},
445445
preprocess,
446446
postprocess,

0 commit comments

Comments
 (0)