Skip to content

Commit b075b0b

Browse files
chore: release 6.1.1 πŸš€
1 parent 2cf3c6b commit b075b0b

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "6.1.0"
2+
".": "6.1.1"
33
}

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [6.1.1](https://github.com/eslint/markdown/compare/v6.1.0...v6.1.1) (2024-09-25)
4+
5+
6+
### Bug Fixes
7+
8+
* Account for BOM in the processor ([#282](https://github.com/eslint/markdown/issues/282)) ([01bceae](https://github.com/eslint/markdown/commit/01bceae60fd229fbbaddf6bddffb9ec3933e8605))
9+
* Remove peer dependency ([#284](https://github.com/eslint/markdown/issues/284)) ([2cf3c6b](https://github.com/eslint/markdown/commit/2cf3c6bb7a3572e868bbb271c56763cb0bc9172f))
10+
311
## [6.1.0](https://github.com/eslint/markdown/compare/v6.0.0...v6.1.0) (2024-09-02)
412

513

β€Ž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.1.0",
3+
"version": "6.1.1",
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.1.0",
3+
"version": "6.1.1",
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
@@ -53,7 +53,7 @@ const processorRulesConfig = {
5353
const plugin = {
5454
meta: {
5555
name: "@eslint/markdown",
56-
version: "6.1.0", // x-release-please-version
56+
version: "6.1.1", // x-release-please-version
5757
},
5858
processors: {
5959
markdown: processor,

β€Žsrc/processor.jsβ€Ž

Lines changed: 1 addition & 1 deletion
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.1.0", // x-release-please-version
443+
version: "6.1.1", // x-release-please-version
444444
},
445445
preprocess,
446446
postprocess,

0 commit comments

Comments
Β (0)