Skip to content

Commit c999acd

Browse files
committed
Update to version 0.9.1.
1 parent af37892 commit c999acd

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

CHANGELOG.md

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

3+
## 0.9.1
4+
5+
- Remove `devDependencies` from `npm-shrinkwrap.json` to avoid `npm` failures
6+
37
## 0.9.0
48

59
- Add support for Node.js's `package.json` as a configuration file source

README.md

+4-4
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.0 "**/*.md" "#node_modules"
170+
docker run -v $PWD:/workdir davidanson/markdownlint-cli2:v0.9.1 "**/*.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.0 "**/*.md" "#node_modules"
187+
docker run -w /myfolder -v $PWD:/myfolder davidanson/markdownlint-cli2:v0.9.1 "**/*.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.0 "**/*.md" "#node_modules"
196+
> docker run -v $PWD:/workdir --entrypoint="markdownlint-cli2-fix" davidanson/markdownlint-cli2:v0.9.1 "**/*.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.0
415+
rev: v0.9.1
416416
hooks:
417417
- id: markdownlint-cli2
418418
```

markdownlint-cli2.js

+1-1
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.0";
29+
const packageVersion = "0.9.1";
3030
const libraryName = "markdownlint";
3131
const libraryVersion = markdownlintLibrary.getVersion();
3232
const dotOnlySubstitute = "*.{md,markdown}";

npm-shrinkwrap.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

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