Skip to content

Commit bd3bd40

Browse files
committed
Update to version 0.8.0.
1 parent c8c5783 commit bd3bd40

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 0.8.0
4+
5+
- Add support for `--config` and `--fix` parameters
6+
- Update dependencies (including `markdownlint`)
7+
- Remove support for end-of-life Node 14
8+
39
## 0.7.1
410

511
- Update dependencies (including `markdownlint`)

README.md

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

168168
```bash
169-
docker run -v $PWD:/workdir davidanson/markdownlint-cli2:v0.7.1 "**/*.md" "#node_modules"
169+
docker run -v $PWD:/workdir davidanson/markdownlint-cli2:v0.8.0 "**/*.md" "#node_modules"
170170
```
171171

172172
Notes:
@@ -183,7 +183,7 @@ Notes:
183183
- A custom working directory can be specified with Docker's `-w` flag:
184184

185185
```bash
186-
docker run -w /myfolder -v $PWD:/myfolder davidanson/markdownlint-cli2:v0.7.1 "**/*.md" "#node_modules"
186+
docker run -w /myfolder -v $PWD:/myfolder davidanson/markdownlint-cli2:v0.8.0 "**/*.md" "#node_modules"
187187
```
188188

189189
> **Deprecated**
@@ -192,7 +192,7 @@ Notes:
192192
> instead, use Docker's `--entrypoint` flag:
193193
>
194194
> ```bash
195-
> docker run -v $PWD:/workdir --entrypoint="markdownlint-cli2-fix" davidanson/markdownlint-cli2:v0.7.1 "**/*.md" "#node_modules"
195+
> docker run -v $PWD:/workdir --entrypoint="markdownlint-cli2-fix" davidanson/markdownlint-cli2:v0.8.0 "**/*.md" "#node_modules"
196196
> ```
197197

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

402402
```yaml
403403
- repo: https://github.com/DavidAnson/markdownlint-cli2
404-
rev: v0.7.1
404+
rev: v0.8.0
405405
hooks:
406406
- id: markdownlint-cli2
407407
```

markdownlint-cli2.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const resolveAndRequire = require("./resolve-and-require");
2525

2626
// Variables
2727
const packageName = "markdownlint-cli2";
28-
const packageVersion = "0.7.1";
28+
const packageVersion = "0.8.0";
2929
const libraryName = "markdownlint";
3030
const libraryVersion = markdownlintLibrary.getVersion();
3131
const dotOnlySubstitute = "*.{md,markdown}";

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "markdownlint-cli2",
3-
"version": "0.7.1",
3+
"version": "0.8.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)