Update to version 0.26.1.

This commit is contained in:
David Anson 2022-07-24 12:31:06 -07:00
parent 5b0588f378
commit cba2ca0dbd
5 changed files with 6 additions and 5 deletions

View file

@ -1019,6 +1019,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for more information.
remove support for end-of-life Node version 12, default `resultVersion` to 3, update remove support for end-of-life Node version 12, default `resultVersion` to 3, update
browser script to use ES2015, simplify JSON schema, address remaining CodeQL issues, browser script to use ES2015, simplify JSON schema, address remaining CodeQL issues,
improve performance, update dependencies. improve performance, update dependencies.
* 0.26.1 - Improve MD051.
[npm-image]: https://img.shields.io/npm/v/markdownlint.svg [npm-image]: https://img.shields.io/npm/v/markdownlint.svg
[npm-url]: https://www.npmjs.com/package/markdownlint [npm-url]: https://www.npmjs.com/package/markdownlint

View file

@ -1,4 +1,4 @@
/*! markdownlint 0.26.0 https://github.com/DavidAnson/markdownlint @license MIT */ /*! markdownlint 0.26.1 https://github.com/DavidAnson/markdownlint @license MIT */
var markdownlint; var markdownlint;
/******/ (() => { // webpackBootstrap /******/ (() => { // webpackBootstrap
/******/ var __webpack_modules__ = ({ /******/ var __webpack_modules__ = ({
@ -1187,7 +1187,7 @@ module.exports.referenceLinkImageData =
module.exports.deprecatedRuleNames = ["MD002", "MD006"]; module.exports.deprecatedRuleNames = ["MD002", "MD006"];
module.exports.homepage = "https://github.com/DavidAnson/markdownlint"; module.exports.homepage = "https://github.com/DavidAnson/markdownlint";
module.exports.version = "0.26.0"; module.exports.version = "0.26.1";
/***/ }), /***/ }),

View file

@ -1,6 +1,6 @@
{ {
"name": "markdownlint-rule-helpers", "name": "markdownlint-rule-helpers",
"version": "0.17.0", "version": "0.17.1",
"description": "A collection of markdownlint helper functions for custom rules", "description": "A collection of markdownlint helper functions for custom rules",
"main": "./helpers.js", "main": "./helpers.js",
"exports": "./helpers.js", "exports": "./helpers.js",

View file

@ -4,4 +4,4 @@
module.exports.deprecatedRuleNames = [ "MD002", "MD006" ]; module.exports.deprecatedRuleNames = [ "MD002", "MD006" ];
module.exports.homepage = "https://github.com/DavidAnson/markdownlint"; module.exports.homepage = "https://github.com/DavidAnson/markdownlint";
module.exports.version = "0.26.0"; module.exports.version = "0.26.1";

View file

@ -1,6 +1,6 @@
{ {
"name": "markdownlint", "name": "markdownlint",
"version": "0.26.0", "version": "0.26.1",
"description": "A Node.js style checker and lint tool for Markdown/CommonMark files.", "description": "A Node.js style checker and lint tool for Markdown/CommonMark files.",
"type": "commonjs", "type": "commonjs",
"main": "./lib/markdownlint.js", "main": "./lib/markdownlint.js",