diff --git a/README.md b/README.md index c7ca285e4..988c12d3a 100644 --- a/README.md +++ b/README.md @@ -1021,6 +1021,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for more information. browser script to use ES2015, simplify JSON schema, address remaining CodeQL issues, improve performance, update dependencies. * 0.26.1 - Improve MD051. + * 0.26.2 - Improve MD037/MD051/MD053. [npm-image]: https://img.shields.io/npm/v/markdownlint.svg [npm-url]: https://www.npmjs.com/package/markdownlint diff --git a/demo/markdownlint-browser.js b/demo/markdownlint-browser.js index fa20c1cf1..1ce2b3bca 100644 --- a/demo/markdownlint-browser.js +++ b/demo/markdownlint-browser.js @@ -1,4 +1,4 @@ -/*! markdownlint 0.26.1 https://github.com/DavidAnson/markdownlint @license MIT */ +/*! markdownlint 0.26.2 https://github.com/DavidAnson/markdownlint @license MIT */ var markdownlint; /******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ @@ -1190,7 +1190,7 @@ module.exports.referenceLinkImageData = module.exports.deprecatedRuleNames = ["MD002", "MD006"]; module.exports.homepage = "https://github.com/DavidAnson/markdownlint"; -module.exports.version = "0.26.1"; +module.exports.version = "0.26.2"; /***/ }), diff --git a/helpers/package.json b/helpers/package.json index c915abacc..210e0b012 100644 --- a/helpers/package.json +++ b/helpers/package.json @@ -1,6 +1,6 @@ { "name": "markdownlint-rule-helpers", - "version": "0.17.1", + "version": "0.17.2", "description": "A collection of markdownlint helper functions for custom rules", "main": "./helpers.js", "exports": "./helpers.js", diff --git a/lib/constants.js b/lib/constants.js index c6ee2db91..466d03b4d 100644 --- a/lib/constants.js +++ b/lib/constants.js @@ -4,4 +4,4 @@ module.exports.deprecatedRuleNames = [ "MD002", "MD006" ]; module.exports.homepage = "https://github.com/DavidAnson/markdownlint"; -module.exports.version = "0.26.1"; +module.exports.version = "0.26.2"; diff --git a/package.json b/package.json index 0e9b5d99d..3b7c183bc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "markdownlint", - "version": "0.26.1", + "version": "0.26.2", "description": "A Node.js style checker and lint tool for Markdown/CommonMark files.", "type": "commonjs", "main": "./lib/markdownlint.js",