Skip to content

Commit e54fbe2

Browse files
committed
Update to version 0.7.0.
1 parent ecb81e3 commit e54fbe2

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.7.0
4+
5+
- Add support for `extends` in `config` property of `.markdownlint-cli2.*` files
6+
- Build and publish `davidanson/markdownlint-cli2-rules` Docker container image
7+
- Update dependencies (including `markdownlint`)
8+
39
## 0.6.0
410

511
- Update dependencies (including `markdownlint`)

README.md

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

147147
```bash
148-
docker run -v $PWD:/workdir davidanson/markdownlint-cli2:v0.6.0 "**/*.md" "#node_modules"
148+
docker run -v $PWD:/workdir davidanson/markdownlint-cli2:v0.7.0 "**/*.md" "#node_modules"
149149
```
150150

151151
Notes:
@@ -162,14 +162,14 @@ Notes:
162162
- A custom working directory can be specified with Docker's `-w` flag:
163163

164164
```bash
165-
docker run -w /myfolder -v $PWD:/myfolder davidanson/markdownlint-cli2:v0.6.0 "**/*.md" "#node_modules"
165+
docker run -w /myfolder -v $PWD:/myfolder davidanson/markdownlint-cli2:v0.7.0 "**/*.md" "#node_modules"
166166
```
167167

168168
To invoke the `markdownlint-cli2-config` or `markdownlint-cli2-fix` commands
169169
instead, use Docker's `--entrypoint` flag:
170170

171171
```bash
172-
docker run -v $PWD:/workdir --entrypoint="markdownlint-cli2-fix" davidanson/markdownlint-cli2:v0.6.0 "**/*.md" "#node_modules"
172+
docker run -v $PWD:/workdir --entrypoint="markdownlint-cli2-fix" davidanson/markdownlint-cli2:v0.7.0 "**/*.md" "#node_modules"
173173
```
174174

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

379379
```yaml
380380
- repo: https://github.com/DavidAnson/markdownlint-cli2
381-
rev: v0.6.0
381+
rev: v0.7.0
382382
hooks:
383383
- id: markdownlint-cli2
384384
```

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.6.0";
28+
const packageVersion = "0.7.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.6.0",
3+
"version": "0.7.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)