Skip to content

Commit 8524909

Browse files
committed
Update to version 0.11.0.
1 parent 79e6cb0 commit 8524909

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 0.11.0
4+
5+
- Add `modulePaths` configuration option
6+
- Update dependencies (including `markdownlint`)
7+
- Remove support for end-of-life Node 16
8+
39
## 0.10.0
410

511
- Add `showFound` configuration option

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ A container image [`davidanson/markdownlint-cli2`][docker-hub-markdownlint-cli2]
167167
can also be used (e.g., as part of a CI pipeline):
168168

169169
```bash
170-
docker run -v $PWD:/workdir davidanson/markdownlint-cli2:v0.10.0 "**/*.md" "#node_modules"
170+
docker run -v $PWD:/workdir davidanson/markdownlint-cli2:v0.11.0 "**/*.md" "#node_modules"
171171
```
172172

173173
Notes:
@@ -184,7 +184,7 @@ Notes:
184184
- A custom working directory can be specified with Docker's `-w` flag:
185185

186186
```bash
187-
docker run -w /myfolder -v $PWD:/myfolder davidanson/markdownlint-cli2:v0.10.0 "**/*.md" "#node_modules"
187+
docker run -w /myfolder -v $PWD:/myfolder davidanson/markdownlint-cli2:v0.11.0 "**/*.md" "#node_modules"
188188
```
189189

190190
> **Deprecated**
@@ -193,7 +193,7 @@ Notes:
193193
> instead, use Docker's `--entrypoint` flag:
194194
>
195195
> ```bash
196-
> docker run -v $PWD:/workdir --entrypoint="markdownlint-cli2-fix" davidanson/markdownlint-cli2:v0.10.0 "**/*.md" "#node_modules"
196+
> docker run -v $PWD:/workdir --entrypoint="markdownlint-cli2-fix" davidanson/markdownlint-cli2:v0.11.0 "**/*.md" "#node_modules"
197197
> ```
198198

199199
For convenience, the container image
@@ -420,7 +420,7 @@ reference to the `repos` list in that project's `.pre-commit-config.yaml` like:
420420

421421
```yaml
422422
- repo: https://github.com/DavidAnson/markdownlint-cli2
423-
rev: v0.10.0
423+
rev: v0.11.0
424424
hooks:
425425
- id: markdownlint-cli2
426426
```

markdownlint-cli2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const resolveAndRequire = require("./resolve-and-require");
2626

2727
// Variables
2828
const packageName = "markdownlint-cli2";
29-
const packageVersion = "0.10.0";
29+
const packageVersion = "0.11.0";
3030
const libraryName = "markdownlint";
3131
const libraryVersion = markdownlintLibrary.getVersion();
3232
const dotOnlySubstitute = "*.{md,markdown}";

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "markdownlint-cli2",
3-
"version": "0.10.0",
3+
"version": "0.11.0",
44
"description": "A fast, flexible, configuration-based command-line interface for linting Markdown/CommonMark files with the `markdownlint` library",
55
"author": {
66
"name": "David Anson",

0 commit comments

Comments
 (0)