From 51cec76c2b0e585a290aec4b53201c517e53d901 Mon Sep 17 00:00:00 2001 From: David Anson Date: Tue, 21 Jun 2022 21:16:44 -0700 Subject: [PATCH] Update to version 0.26.0. --- README.md | 7 +++++++ demo/markdownlint-browser.js | 4 ++-- helpers/package.json | 2 +- lib/constants.js | 2 +- package.json | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c0e66a9ab..062496697 100644 --- a/README.md +++ b/README.md @@ -1012,6 +1012,13 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for more information. MD007/MD010/MD032/MD033/MD035/MD037/MD039, support asynchronous custom rules, improve performance, improve CI process, reduce dependencies, update dependencies. * 0.25.1 - Update dependencies for CVE-2022-21670. +* 0.26.0 - Add MD051/MD052/MD053 for validating link fragments & reference links/images & + link/image reference definitions (MD053 is auto-fixable), improve + MD010/MD031/MD035/MD039/MD042/MD044/MD049/MD050, add `markdownlint-disable-line` + inline comment, support `~` paths in `readConfig/Sync`, add `configParsers` option, + 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, + improve performance, update dependencies. [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 71ba61c16..6fbdc4e4e 100644 --- a/demo/markdownlint-browser.js +++ b/demo/markdownlint-browser.js @@ -1,4 +1,4 @@ -/*! markdownlint 0.25.1 https://github.com/DavidAnson/markdownlint @license MIT */ +/*! markdownlint 0.26.0 https://github.com/DavidAnson/markdownlint @license MIT */ var markdownlint; /******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ @@ -1187,7 +1187,7 @@ module.exports.referenceLinkImageData = module.exports.deprecatedRuleNames = ["MD002", "MD006"]; module.exports.homepage = "https://github.com/DavidAnson/markdownlint"; -module.exports.version = "0.25.1"; +module.exports.version = "0.26.0"; /***/ }), diff --git a/helpers/package.json b/helpers/package.json index 69d579c80..9ca32ba96 100644 --- a/helpers/package.json +++ b/helpers/package.json @@ -1,6 +1,6 @@ { "name": "markdownlint-rule-helpers", - "version": "0.16.0", + "version": "0.17.0", "description": "A collection of markdownlint helper functions for custom rules", "main": "helpers.js", "author": "David Anson (https://dlaa.me/)", diff --git a/lib/constants.js b/lib/constants.js index 5116e4d4f..8b78f35bc 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.25.1"; +module.exports.version = "0.26.0"; diff --git a/package.json b/package.json index 4bab8c5b5..6d1f9478c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "markdownlint", - "version": "0.25.1", + "version": "0.26.0", "description": "A Node.js style checker and lint tool for Markdown/CommonMark files.", "type": "commonjs", "main": "lib/markdownlint.js",