Skip to content

Commit

Permalink
chore: release 6.0.0 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jul 26, 2024
1 parent e0b5457 commit ccd43ff
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 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 @@
{
".": "5.1.0"
".": "6.0.0"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [6.0.0](https://github.com/eslint/eslint-plugin-markdown/compare/v5.1.0...v6.0.0) (2024-07-26)


### âš  BREAKING CHANGES

* Rename to @eslint/markdown ([#265](https://github.com/eslint/eslint-plugin-markdown/issues/265))
* Convert to ESM ([#259](https://github.com/eslint/eslint-plugin-markdown/issues/259))

### Features

* Convert to ESM ([#259](https://github.com/eslint/eslint-plugin-markdown/issues/259)) ([e0da221](https://github.com/eslint/eslint-plugin-markdown/commit/e0da2214cc06fd441def1844135f3c9fef74e940))
* Rename to @eslint/markdown ([#265](https://github.com/eslint/eslint-plugin-markdown/issues/265)) ([e0b5457](https://github.com/eslint/eslint-plugin-markdown/commit/e0b545708c051e605b438f9cddde8dad3ec24c6e))

## [5.1.0](https://github.com/eslint/eslint-plugin-markdown/compare/v5.0.0...v5.1.0) (2024-07-05)


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": "5.1.0",
"version": "6.0.0",
"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 @@ -39,7 +39,7 @@ const rulesConfig = {
const plugin = {
meta: {
name: "@eslint/markdown",
version: "5.1.0" // x-release-please-version
version: "6.0.0" // 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 @@ -410,7 +410,7 @@ function postprocess(messages, filename) {
export const processor = {
meta: {
name: "@eslint/markdown/markdown",
version: "5.1.0" // x-release-please-version
version: "6.0.0" // x-release-please-version
},
preprocess,
postprocess,
Expand Down

0 comments on commit ccd43ff

Please sign in to comment.