diff --git a/CHANGELOG.md b/CHANGELOG.md index 14a96b8..ea1b6ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,8 @@ Types for Changes: ## [Unreleased] - ReleaseDate +## [0.17.2] - 2024-06-23 + * Do not panic if ignore paths are not found #92 ## [0.17.1] - 2024-06-05 diff --git a/Cargo.lock b/Cargo.lock index c3b5211..17c74f1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1120,7 +1120,7 @@ dependencies = [ [[package]] name = "mlc" -version = "0.17.1" +version = "0.17.2" dependencies = [ "async-std", "clap", diff --git a/Cargo.toml b/Cargo.toml index 5547357..71dc539 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mlc" -version = "0.17.1" +version = "0.17.2" authors = ["Armin Becher "] edition = "2018" description = "The markup link checker (mlc) checks for broken links in markup files." diff --git a/GithubAction-Dockerfile b/GithubAction-Dockerfile index b5ecf3f..9aa063d 100644 --- a/GithubAction-Dockerfile +++ b/GithubAction-Dockerfile @@ -1,4 +1,4 @@ -FROM becheran/mlc:0.17.1 +FROM becheran/mlc:0.17.2 LABEL repository="https://github.com/becheran/mlc" diff --git a/README.md b/README.md index c1e93e0..9c287d5 100644 --- a/README.md +++ b/README.md @@ -57,14 +57,14 @@ Use *mlc* in GitHub using the *GitHub-Action* from the [Marketplace](https://git ``` yaml - name: Markup Link Checker (mlc) - uses: becheran/mlc@v0.17.1 + uses: becheran/mlc@v0.17.2 ``` Use *mlc* command line arguments using the `with` argument: ``` yaml - name: Markup Link Checker (mlc) - uses: becheran/mlc@v0.17.1 + uses: becheran/mlc@v0.17.2 with: args: ./README.md ``` @@ -78,7 +78,7 @@ The action does uses [GitHub workflow commands](https://docs.github.com/en/actio To integrate *mlc* in your CI pipeline running in a *linux x86_64 environment* you can add the following commands to download the tool: ``` bash -curl -L https://github.com/becheran/mlc/releases/download/v0.17.1/mlc-x86_64-linux -o mlc +curl -L https://github.com/becheran/mlc/releases/download/v0.17.2/mlc-x86_64-linux -o mlc chmod +x mlc ```