Skip to content

Commit

Permalink
chore: release 6.1.1 🚀 (#283)
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 Sep 27, 2024
1 parent e320c7c commit 7028e57
Show file tree
Hide file tree
Showing 6 changed files with 13 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.1.0"
".": "6.1.1"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [6.1.1](https://github.com/eslint/markdown/compare/v6.1.0...v6.1.1) (2024-09-26)


### Bug Fixes

* Account for BOM in the processor ([#282](https://github.com/eslint/markdown/issues/282)) ([01bceae](https://github.com/eslint/markdown/commit/01bceae60fd229fbbaddf6bddffb9ec3933e8605))
* Remove peer dependency ([#284](https://github.com/eslint/markdown/issues/284)) ([2cf3c6b](https://github.com/eslint/markdown/commit/2cf3c6bb7a3572e868bbb271c56763cb0bc9172f))

## [6.1.0](https://github.com/eslint/markdown/compare/v6.0.0...v6.1.0) (2024-09-02)


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.1.0",
"version": "6.1.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.1.0",
"version": "6.1.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.1.0", // x-release-please-version
version: "6.1.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.1.0", // x-release-please-version
version: "6.1.1", // x-release-please-version
},
preprocess,
postprocess,
Expand Down

0 comments on commit 7028e57

Please sign in to comment.