From 11ac0e01f2c64f36396bf71d3a59b94cfa8db5be Mon Sep 17 00:00:00 2001 From: Armin Becher Date: Sat, 8 Feb 2025 22:03:51 +0100 Subject: [PATCH] chore: Release mlc version 0.20.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 0d3c446..bfd7492 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,8 @@ Types for Changes: ## [Unreleased] - ReleaseDate +## [0.20.0] - 2025-02-08 + - Fix remove trailing slashes from OK messages - Feat add realistic browser accept headers - Feat warn if reference in markdown document is broken diff --git a/Cargo.lock b/Cargo.lock index ea9f3e4..499b433 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1250,7 +1250,7 @@ dependencies = [ [[package]] name = "mlc" -version = "0.19.2" +version = "0.20.0" dependencies = [ "async-std", "clap", diff --git a/Cargo.toml b/Cargo.toml index afa8c68..6687cb6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mlc" -version = "0.19.2" +version = "0.20.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 95f4831..a0e5e0d 100644 --- a/GithubAction-Dockerfile +++ b/GithubAction-Dockerfile @@ -1,4 +1,4 @@ -FROM becheran/mlc:0.19.2 +FROM becheran/mlc:0.20.0 LABEL repository="https://github.com/becheran/mlc" diff --git a/README.md b/README.md index b1b8570..5c56807 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.19.2 + uses: becheran/mlc@v0.20.0 ``` Use *mlc* command line arguments using the `with` argument: ``` yaml - name: Markup Link Checker (mlc) - uses: becheran/mlc@v0.19.2 + uses: becheran/mlc@v0.20.0 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.19.2/mlc-x86_64-linux -o mlc +curl -L https://github.com/becheran/mlc/releases/download/v0.20.0/mlc-x86_64-linux -o mlc chmod +x mlc ```