Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release 6.1.1 🚀 #283

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

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


### Bug Fixes

* Account for BOM in the processor ([#282](https://github.com/eslint/markdown/issues/282)) ([01bceae](https://github.com/eslint/markdown/commit/01bceae60fd229fbbaddf6bddffb9ec3933e8605))

## [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