Skip to content

Commit

Permalink
release 1.1.0 (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderDokuchaev authored Jan 26, 2025
1 parent 162c0a1 commit c7210ef
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Changelog

## 1.0
## 1.1.0

- Add `--untrack` argument to check untracked files
- Detection bare links
- Add comments `<!-- md-dead-link-check: off -->` and `<!-- md-dead-link-check: on -->`
- 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.
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@v1.0.1
- uses: AlexanderDokuchaev/md-dead-link-check@v1.1.0
```
### 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: "v1.0.1"
rev: "v1.1.0"
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@v1.0.1
- uses: AlexanderDokuchaev/md-dead-link-check@v1.1.0
```

```yaml
Expand All @@ -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
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: '1.0.1'
default: '1.1.0'
python_version:
description: 'Python version'
required: false
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit c7210ef

Please sign in to comment.