From c7210ef8a38c194a119834e39d212387d19b512c Mon Sep 17 00:00:00 2001 From: Alexander Dokuchaev Date: Sun, 26 Jan 2025 23:25:34 +0200 Subject: [PATCH] release 1.1.0 (#18) --- .github/workflows/ubuntu.yml | 2 +- CHANGELOG.md | 11 ++++++++++- README.md | 8 ++++---- action.yaml | 2 +- pyproject.toml | 5 ++--- 5 files changed, 18 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index f208e95..444271e 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v4 diff --git a/CHANGELOG.md b/CHANGELOG.md index cfdffae..1a1796e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog -## 1.0 +## 1.1.0 + +- Add `--untrack` argument to check untracked files +- Detection bare links +- Add comments `` and `` +- Add message about applied throttling +- Add warning about detection "429: To Many Request" +- Drop support python3.8 + +## 1.0.0 - Added throttling to avoid hitting rate limits on external services. - Filter `ftp` and `sftp` protocols for links. diff --git a/README.md b/README.md index cb8f3e7..cbc0d15 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@v1.0.1 + - uses: AlexanderDokuchaev/md-dead-link-check@v1.1.0 ``` ### 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: "v1.0.1" + rev: "v1.1.0" 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@v1.0.1 + - uses: AlexanderDokuchaev/md-dead-link-check@v1.1.0 ``` ```yaml @@ -92,7 +92,7 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - - uses: AlexanderDokuchaev/md-dead-link-check@v1.0.1 + - uses: AlexanderDokuchaev/md-dead-link-check@v1.1.0 ``` ### Option 3: Install from pip diff --git a/action.yaml b/action.yaml index 8c134a5..59b5090 100644 --- a/action.yaml +++ b/action.yaml @@ -12,7 +12,7 @@ inputs: version: description: 'Version of package' required: false - default: '1.0.1' + default: '1.1.0' python_version: description: 'Python version' required: false diff --git a/pyproject.toml b/pyproject.toml index b8c3dea..a563b5a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,9 +2,9 @@ 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 = "1.0.1" +version = "1.1.0" license = {text = "MIT"} -requires-python = ">=3.8" +requires-python = ">=3.9" dependencies = [ "toml>=0.7.0,<3.11.0", "GitPython>=3.1.0,<3.2.0", @@ -25,7 +25,6 @@ classifiers = [ "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",