Skip to content

Commit e76f4c7

Browse files
chore: release 6.0.0 🚀 (#267)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent d79c42b commit e76f4c7

5 files changed

+19
-4
lines changed

‎.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "5.1.0"
2+
".": "6.0.0"
33
}

‎CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## [6.0.0](https://github.com/eslint/markdown/compare/v5.1.0...v6.0.0) (2024-08-21)
4+
5+
6+
### âš  BREAKING CHANGES
7+
8+
* Rename to @eslint/markdown ([#265](https://github.com/eslint/markdown/issues/265))
9+
* Convert to ESM ([#259](https://github.com/eslint/markdown/issues/259))
10+
11+
### Features
12+
13+
* Add Markdown languages ([#268](https://github.com/eslint/markdown/issues/268)) ([d79c42b](https://github.com/eslint/markdown/commit/d79c42bcb1a8f495b21733c25c8b70e881a7ebf9))
14+
* Add type checking and type definitions ([#266](https://github.com/eslint/markdown/issues/266)) ([0503748](https://github.com/eslint/markdown/commit/0503748497e623842b8c78b140b766a086ee2ce7))
15+
* Convert to ESM ([#259](https://github.com/eslint/markdown/issues/259)) ([e0da221](https://github.com/eslint/markdown/commit/e0da2214cc06fd441def1844135f3c9fef74e940))
16+
* Rename to @eslint/markdown ([#265](https://github.com/eslint/markdown/issues/265)) ([e0b5457](https://github.com/eslint/markdown/commit/e0b545708c051e605b438f9cddde8dad3ec24c6e))
17+
318
## [5.1.0](https://github.com/eslint/eslint-plugin-markdown/compare/v5.0.0...v5.1.0) (2024-07-05)
419

520

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/markdown",
3-
"version": "5.1.0",
3+
"version": "6.0.0",
44
"description": "The official ESLint language plugin for Markdown",
55
"license": "MIT",
66
"author": {

‎src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const processorRulesConfig = {
5454
const plugin = {
5555
meta: {
5656
name: "@eslint/markdown",
57-
version: "5.1.0" // x-release-please-version
57+
version: "6.0.0" // x-release-please-version
5858
},
5959
processors: {
6060
markdown: processor

‎src/processor.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ function postprocess(messages, filename) {
424424
export const processor = {
425425
meta: {
426426
name: "@eslint/markdown/markdown",
427-
version: "5.1.0" // x-release-please-version
427+
version: "6.0.0" // x-release-please-version
428428
},
429429
preprocess,
430430
postprocess,

0 commit comments

Comments
 (0)