Skip to content

Commit

Permalink
release v0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderDokuchaev committed Jul 1, 2024
1 parent 4c6de7a commit cc3ed55
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.9

- Support headers with links and html tags
- Support list of headers
- Support any langues
- Detect links with brackets
- Detect html tags with several arguments
- Fix crash on incorrect links

## 0.8

- Retry get request in case of head request return 404.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: AlexanderDokuchaev/md-dead-link-check@v0.8
- uses: AlexanderDokuchaev/md-dead-link-check@v0.9
```

### Option 2: Pre-Commit
Expand All @@ -52,7 +52,7 @@ Adding to your `.pre-commit-config.yaml` to integrate in [pre-commit](https://pr

```yaml
- repo: https://github.com/AlexanderDokuchaev/md-dead-link-check
rev: "v0.6"
rev: "v0.9"
hooks:
- id: md-dead-link-check
```
Expand All @@ -75,7 +75,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: AlexanderDokuchaev/md-dead-link-check@v0.8
- uses: AlexanderDokuchaev/md-dead-link-check@v0.9
```

```yaml
Expand All @@ -92,7 +92,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: AlexanderDokuchaev/md-dead-link-check@v0.8
- uses: AlexanderDokuchaev/md-dead-link-check@v0.9
```

### Option 3: Install from pip
Expand Down
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ inputs:
version:
description: 'Version of package'
required: false
default: '0.8'
default: '0.9'
runs:
using: 'composite'
steps:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "md_dead_link_check"
description = "This is a lightweight and fast tool to help you keep your Markdown files free of broken links."
readme = "README.md"
version = "0.8"
version = "0.9"
license = {text = "MIT"}
requires-python = ">=3.8"
dependencies = [
Expand Down

0 comments on commit cc3ed55

Please sign in to comment.