Skip to content

Commit

Permalink
release 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderDokuchaev committed Mar 9, 2024
1 parent 6ec1f3d commit a831eb1
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 9 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.5

- Fixed converting header with link to fragment.
- Fixed parsing links for badge.
- Check same links only one time.
- Detection links to file that not added to repository.
- Added `warn` and `all` arguments.
- Removed `verbose` argument.

## 0.4

- Remove debug output
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright [yyyy] [name of copyright owner]
Copyright [2024] Alexander Dokuchaev

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 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@0.4
- uses: AlexanderDokuchaev/md-dead-link-check@v0.5
```
### 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: "0.4"
rev: "v0.5"
hooks:
- id: md-dead-link-check
```
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.4'
default: '0.5'
runs:
using: 'composite'
steps:
Expand Down
11 changes: 6 additions & 5 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 = "0.4"
license = "MIT"
requires-python = ">= 3.8"
version = "0.5"
license = {text = "Apache-2.0"}
requires-python = ">=3.8"
dependencies = [
"toml>=0.7.0,<3.11.0",
"GitPython>=3.1.0,<3.2.0",
Expand All @@ -23,7 +23,8 @@ keywords = [
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"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",
Expand All @@ -32,7 +33,7 @@ classifiers = [
]

[project.urls]
Homepage = "https://github.com/AlexanderDokuchaev/md-dead-link-check"
Repository = "https://github.com/AlexanderDokuchaev/md-dead-link-check"
Issues = "https://github.com/AlexanderDokuchaev/md-dead-link-check/issues"

[project.optional-dependencies]
Expand Down

0 comments on commit a831eb1

Please sign in to comment.