From e76f4c7c74c6b073d2f0922dad1a77ca984f3eb1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 21 Aug 2024 10:47:21 -0400 Subject: [PATCH] =?UTF-8?q?chore:=20release=206.0.0=20=F0=9F=9A=80=20(#267?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 2 +- CHANGELOG.md | 15 +++++++++++++++ package.json | 2 +- src/index.js | 2 +- src/processor.js | 2 +- 5 files changed, 19 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index affd1ab3..a3a12f49 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "5.1.0" + ".": "6.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index decdde38..fac7b2ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/package.json b/package.json index 8ee55345..d1c5edba 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/index.js b/src/index.js index fd08fb9e..6d188828 100644 --- a/src/index.js +++ b/src/index.js @@ -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 diff --git a/src/processor.js b/src/processor.js index a90c3007..f55920a3 100644 --- a/src/processor.js +++ b/src/processor.js @@ -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,