Skip to content

Commit

Permalink
Update to version 0.29.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidAnson committed Jun 2, 2023
1 parent b3c20f7 commit d01180e
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.29.0

- Update `micromark` parser dependencies for better performance
- Use `micromark` in MD049/MD050
- Improve MD034/MD037/MD044/MD049/MD050
- Support multiple parsers in demo page
- Remove support for end-of-life Node version 14
- Update dependencies

## 0.28.2

- Update dependencies for CVE-2023-2251
Expand All @@ -13,7 +22,7 @@
- Introduce `micromark` parser for better positional data (internal only)
- Use `micromark` in MD013/MD033/MD034/MD035/MD038/MD044/MD052/MD053
- Simplify file-based test cases
- Unify browser script for demo
- Unify browser script for demo page
- Update dependencies

## 0.27.0
Expand Down
4 changes: 2 additions & 2 deletions demo/markdownlint-browser.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! markdownlint 0.28.2 https://github.com/DavidAnson/markdownlint @license MIT */
/*! markdownlint 0.29.0 https://github.com/DavidAnson/markdownlint @license MIT */
var markdownlint;
/******/ (() => { // webpackBootstrap
/******/ var __webpack_modules__ = ({
Expand Down Expand Up @@ -1613,7 +1613,7 @@ module.exports.referenceLinkImageData = function () {
module.exports.deprecatedRuleNames = ["MD002", "MD006"];
module.exports.fixableRuleNames = ["MD004", "MD005", "MD006", "MD007", "MD009", "MD010", "MD011", "MD012", "MD014", "MD018", "MD019", "MD020", "MD021", "MD022", "MD023", "MD026", "MD027", "MD030", "MD031", "MD032", "MD034", "MD037", "MD038", "MD039", "MD044", "MD047", "MD049", "MD050", "MD051", "MD053"];
module.exports.homepage = "https://github.com/DavidAnson/markdownlint";
module.exports.version = "0.28.2";
module.exports.version = "0.29.0";

/***/ }),

Expand Down
2 changes: 1 addition & 1 deletion helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "markdownlint-rule-helpers",
"version": "0.19.0",
"version": "0.20.0",
"description": "A collection of markdownlint helper functions for custom rules",
"main": "./helpers.js",
"exports": "./helpers.js",
Expand Down
2 changes: 1 addition & 1 deletion lib/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ module.exports.fixableRuleNames = [
"MD044", "MD047", "MD049", "MD050", "MD051", "MD053"
];
module.exports.homepage = "https://github.com/DavidAnson/markdownlint";
module.exports.version = "0.28.2";
module.exports.version = "0.29.0";
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "markdownlint",
"version": "0.28.2",
"version": "0.29.0",
"description": "A Node.js style checker and lint tool for Markdown/CommonMark files.",
"type": "commonjs",
"main": "./lib/markdownlint.js",
Expand Down

0 comments on commit d01180e

Please sign in to comment.