Skip to content

Commit 1497dc2

Browse files
release v0.6
1 parent 9f154f7 commit 1497dc2

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
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.6
4+
5+
- Github Action checks web link in changed files only for pull request events.
6+
- Updated error messages.
7+
- MIT license.
8+
39
## 0.5
410

511
- Fixed converting header with link to fragment.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-22.04
4444
steps:
4545
- uses: actions/checkout@v4
46-
- uses: AlexanderDokuchaev/md-dead-link-check@v0.5
46+
- uses: AlexanderDokuchaev/md-dead-link-check@v0.6
4747
```
4848
4949
### Option 2: Pre-Commit
@@ -52,7 +52,7 @@ Adding to your `.pre-commit-config.yaml` to integrate in [pre-commit](https://pr
5252

5353
```yaml
5454
- repo: https://github.com/AlexanderDokuchaev/md-dead-link-check
55-
rev: "v0.5"
55+
rev: "v0.6"
5656
hooks:
5757
- id: md-dead-link-check
5858
```

action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ inputs:
1212
version:
1313
description: 'Version of package'
1414
required: false
15-
default: '0.5'
15+
default: '0.6'
1616
runs:
1717
using: 'composite'
1818
steps:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "md_dead_link_check"
33
description = "This is a lightweight and fast tool to help you keep your Markdown files free of broken links."
44
readme = "README.md"
5-
version = "0.5"
5+
version = "0.6"
66
license = {text = "MIT"}
77
requires-python = ">=3.8"
88
dependencies = [

0 commit comments

Comments
 (0)