Skip to content

Commit

Permalink
chore: release 6.2.1 🚀 (#292)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Oct 17, 2024
1 parent ac1bc1c commit 05196f5
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "6.2.0"
".": "6.2.1"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [6.2.1](https://github.com/eslint/markdown/compare/v6.2.0...v6.2.1) (2024-10-16)


### Bug Fixes

* 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))

## [6.2.0](https://github.com/eslint/markdown/compare/v6.1.1...v6.2.0) (2024-10-03)


Expand Down
2 changes: 1 addition & 1 deletion jsr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/markdown",
"version": "6.2.0",
"version": "6.2.1",
"exports": "./dist/esm/index.js",
"publish": {
"include": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/markdown",
"version": "6.2.0",
"version": "6.2.1",
"description": "The official ESLint language plugin for Markdown",
"license": "MIT",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const processorRulesConfig = {
const plugin = {
meta: {
name: "@eslint/markdown",
version: "6.2.0", // x-release-please-version
version: "6.2.1", // x-release-please-version
},
processors: {
markdown: processor,
Expand Down
2 changes: 1 addition & 1 deletion src/processor.js
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ function postprocess(messages, filename) {
export const processor = {
meta: {
name: "@eslint/markdown/markdown",
version: "6.2.0", // x-release-please-version
version: "6.2.1", // x-release-please-version
},
preprocess,
postprocess,
Expand Down

0 comments on commit 05196f5

Please sign in to comment.