Skip to content

Commit

Permalink
chore: release 6.0.0 🚀 (#267)
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] committed Aug 21, 2024
1 parent d79c42b commit e76f4c7
Show file tree
Hide file tree
Showing 5 changed files with 19 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"
}
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

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


### âš  BREAKING CHANGES

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

### Features

* Add Markdown languages ([#268](https://github.com/eslint/markdown/issues/268)) ([d79c42b](https://github.com/eslint/markdown/commit/d79c42bcb1a8f495b21733c25c8b70e881a7ebf9))
* Add type checking and type definitions ([#266](https://github.com/eslint/markdown/issues/266)) ([0503748](https://github.com/eslint/markdown/commit/0503748497e623842b8c78b140b766a086ee2ce7))
* Convert to ESM ([#259](https://github.com/eslint/markdown/issues/259)) ([e0da221](https://github.com/eslint/markdown/commit/e0da2214cc06fd441def1844135f3c9fef74e940))
* Rename to @eslint/markdown ([#265](https://github.com/eslint/markdown/issues/265)) ([e0b5457](https://github.com/eslint/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 @@ -54,7 +54,7 @@ const processorRulesConfig = {
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 @@ -424,7 +424,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 e76f4c7

Please sign in to comment.