From 7be180330b88edd2652c334cabecbef1f6bf1cb5 Mon Sep 17 00:00:00 2001 From: Armin Becher Date: Sun, 19 May 2024 22:48:52 +0200 Subject: [PATCH] chore: Release mlc version 0.17.0 --- CHANGELOG.md | 2 ++ Cargo.lock | 2 +- Cargo.toml | 2 +- GithubAction-Dockerfile | 2 +- README.md | 6 +++--- 5 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 192f74f..074afe8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,8 @@ Types for Changes: ## [Unreleased] - ReleaseDate +## [0.17.0] - 2024-05-19 + * Changed enhanced logging and do not crash if path can not be canonicalized * Added option to hide redirects #84 * Changed use ARM64 Mac OS diff --git a/Cargo.lock b/Cargo.lock index b65a062..0c9ce90 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1012,7 +1012,7 @@ dependencies = [ [[package]] name = "mlc" -version = "0.16.3" +version = "0.17.0" dependencies = [ "async-std", "clap", diff --git a/Cargo.toml b/Cargo.toml index b7347f2..cc803dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mlc" -version = "0.16.3" +version = "0.17.0" 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 172f105..f371a76 100644 --- a/GithubAction-Dockerfile +++ b/GithubAction-Dockerfile @@ -1,4 +1,4 @@ -FROM becheran/mlc:0.16.3 +FROM becheran/mlc:0.17.0 LABEL repository="https://github.com/becheran/mlc" diff --git a/README.md b/README.md index 5fc6723..6cd2303 100644 --- a/README.md +++ b/README.md @@ -51,14 +51,14 @@ Use *mlc* in GitHub using the *GitHub-Action* from the [Marketplace](https://git ``` yaml - name: Markup Link Checker (mlc) - uses: becheran/mlc@v0.16.3 + uses: becheran/mlc@v0.17.0 ``` Use *mlc* command line arguments using the `with` argument: ``` yaml - name: Markup Link Checker (mlc) - uses: becheran/mlc@v0.16.3 + uses: becheran/mlc@v0.17.0 with: args: ./README.md ``` @@ -72,7 +72,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.16.3/mlc-x86_64-linux -o mlc +curl -L https://github.com/becheran/mlc/releases/download/v0.17.0/mlc-x86_64-linux -o mlc chmod +x mlc ```