Skip to content

Commit 5199ad8

Browse files
committed
Update to version 0.9.2.
1 parent 9d6d266 commit 5199ad8

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGELOG.md

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

3+
## 0.9.2
4+
5+
- Remove `npm-shrinkwrap.json` entirely to avoid `npm` failures
6+
37
## 0.9.1
48

59
- Remove `devDependencies` from `npm-shrinkwrap.json` to avoid `npm` failures

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.9.1 "**/*.md" "#node_modules"
170+
docker run -v $PWD:/workdir davidanson/markdownlint-cli2:v0.9.2 "**/*.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.9.1 "**/*.md" "#node_modules"
187+
docker run -w /myfolder -v $PWD:/myfolder davidanson/markdownlint-cli2:v0.9.2 "**/*.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.9.1 "**/*.md" "#node_modules"
196+
> docker run -v $PWD:/workdir --entrypoint="markdownlint-cli2-fix" davidanson/markdownlint-cli2:v0.9.2 "**/*.md" "#node_modules"
197197
> ```
198198

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

413413
```yaml
414414
- repo: https://github.com/DavidAnson/markdownlint-cli2
415-
rev: v0.9.1
415+
rev: v0.9.2
416416
hooks:
417417
- id: markdownlint-cli2
418418
```

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.9.1";
29+
const packageVersion = "0.9.2";
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.9.1",
3+
"version": "0.9.2",
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)