diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a3a12f49..8ace9152 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.0.0" + ".": "6.1.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index fac7b2ed..7cff7a7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [6.1.0](https://github.com/eslint/markdown/compare/v6.0.0...v6.1.0) (2024-09-02) + + +### Features + +* JSR package ([#271](https://github.com/eslint/markdown/issues/271)) ([7040a2e](https://github.com/eslint/markdown/commit/7040a2e3b9b4e1a49cf4b86dbe1ce6c52535d55e)) + + +### Bug Fixes + +* correct `exports` field in package.json ([#279](https://github.com/eslint/markdown/issues/279)) ([8e40d30](https://github.com/eslint/markdown/commit/8e40d308dba0fdcb445cbebf56a161db16bf5806)) + ## [6.0.0](https://github.com/eslint/markdown/compare/v5.1.0...v6.0.0) (2024-08-21) diff --git a/jsr.json b/jsr.json index d94f4520..49f6e045 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/markdown", - "version": "6.0.0", + "version": "6.1.0", "exports": "./dist/esm/index.js", "publish": { "include": [ diff --git a/package.json b/package.json index acacd982..c5a8d68b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/markdown", - "version": "6.0.0", + "version": "6.1.0", "description": "The official ESLint language plugin for Markdown", "license": "MIT", "author": { diff --git a/src/index.js b/src/index.js index 87c9856f..3ac39a01 100644 --- a/src/index.js +++ b/src/index.js @@ -53,7 +53,7 @@ const processorRulesConfig = { const plugin = { meta: { name: "@eslint/markdown", - version: "6.0.0", // x-release-please-version + version: "6.1.0", // x-release-please-version }, processors: { markdown: processor, diff --git a/src/processor.js b/src/processor.js index faf78cac..afb43079 100644 --- a/src/processor.js +++ b/src/processor.js @@ -437,7 +437,7 @@ function postprocess(messages, filename) { export const processor = { meta: { name: "@eslint/markdown/markdown", - version: "6.0.0", // x-release-please-version + version: "6.1.0", // x-release-please-version }, preprocess, postprocess,