From cc3ed55268899a1a6d5fd7068abbc4591eab1f74 Mon Sep 17 00:00:00 2001 From: Alexander Dokuchaev Date: Mon, 1 Jul 2024 03:28:43 +0300 Subject: [PATCH] release v0.9 --- CHANGELOG.md | 9 +++++++++ README.md | 8 ++++---- action.yaml | 2 +- pyproject.toml | 2 +- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6a834b..11cc8d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index 51a7938..410e2f6 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 ``` @@ -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 @@ -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 diff --git a/action.yaml b/action.yaml index 063a4e1..f3d96f1 100644 --- a/action.yaml +++ b/action.yaml @@ -12,7 +12,7 @@ inputs: version: description: 'Version of package' required: false - default: '0.8' + default: '0.9' runs: using: 'composite' steps: diff --git a/pyproject.toml b/pyproject.toml index 194c7a5..7643c89 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = [