Skip to content

Commit

Permalink
chore: release 6.1.0 🚀 (#275)
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 Sep 6, 2024
1 parent 8e40d30 commit a86714c
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 5 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 @@
{
".": "6.0.0"
".": "6.1.0"
}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion jsr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/markdown",
"version": "6.0.0",
"version": "6.1.0",
"exports": "./dist/esm/index.js",
"publish": {
"include": [
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": "6.0.0",
"version": "6.1.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 @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion src/processor.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit a86714c

Please sign in to comment.