Skip to content

Commit 4b7f739

Browse files
chore: release 6.3.0 🚀 (#320)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 7075f00 commit 4b7f739

6 files changed

+12
-5
lines changed

‎.release-please-manifest.json

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

‎CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [6.3.0](https://github.com/eslint/markdown/compare/v6.2.2...v6.3.0) (2025-03-04)
4+
5+
6+
### Features
7+
8+
* allow specifying filename in block meta ([#318](https://github.com/eslint/markdown/issues/318)) ([7075f00](https://github.com/eslint/markdown/commit/7075f009d435e6d940deefe903ba9848964e001c))
9+
310
## [6.2.2](https://github.com/eslint/markdown/compare/v6.2.1...v6.2.2) (2025-01-17)
411

512

‎jsr.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/markdown",
3-
"version": "6.2.2",
3+
"version": "6.3.0",
44
"exports": "./dist/esm/index.js",
55
"publish": {
66
"include": [

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/markdown",
3-
"version": "6.2.2",
3+
"version": "6.3.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 @@ let recommendedPlugins, processorPlugins;
5454
const plugin = {
5555
meta: {
5656
name: "@eslint/markdown",
57-
version: "6.2.2", // x-release-please-version
57+
version: "6.3.0", // x-release-please-version
5858
},
5959
processors: {
6060
markdown: processor,

‎src/processor.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ function postprocess(messages, filename) {
467467
export const processor = {
468468
meta: {
469469
name: "@eslint/markdown/markdown",
470-
version: "6.2.2", // x-release-please-version
470+
version: "6.3.0", // x-release-please-version
471471
},
472472
preprocess,
473473
postprocess,

0 commit comments

Comments
 (0)