diff --git a/CHANGELOG.md b/CHANGELOG.md index bd04454..fb2b672 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/LICENSE b/LICENSE index 261eeb9..f92281a 100644 --- a/LICENSE +++ b/LICENSE @@ -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. diff --git a/README.md b/README.md index 227cdad..587701a 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@0.4 + - uses: AlexanderDokuchaev/md-dead-link-check@v0.5 ``` ### 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: "0.4" + rev: "v0.5" hooks: - id: md-dead-link-check ``` diff --git a/action.yaml b/action.yaml index 699935b..4f66abd 100644 --- a/action.yaml +++ b/action.yaml @@ -12,7 +12,7 @@ inputs: version: description: 'Version of package' required: false - default: '0.4' + default: '0.5' runs: using: 'composite' steps: diff --git a/pyproject.toml b/pyproject.toml index 4549abc..9d9df2c 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 = "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", @@ -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", @@ -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]