From afcfcfbdd7e221e5645d823091f5f2824ada01ea Mon Sep 17 00:00:00 2001 From: Armin Date: Sat, 13 Mar 2021 23:34:08 +0100 Subject: [PATCH] (cargo-release) version 0.14.2 --- 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 7e4a4da..c965ef1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,8 @@ Types for Changes: ## [Unreleased] - ReleaseDate +## [0.14.2] - 2021-03-13 + ## [0.14.1] - 2021-03-07 ## [0.14.0] - 2020-11-11 diff --git a/Cargo.lock b/Cargo.lock index 6abfce3..6fe469c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -952,7 +952,7 @@ dependencies = [ [[package]] name = "mlc" -version = "0.14.2-alpha.0" +version = "0.14.2" dependencies = [ "async-std", "clap", diff --git a/Cargo.toml b/Cargo.toml index c9454b4..e69684d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mlc" -version = "0.14.2-alpha.0" +version = "0.14.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 016cc2c..b801d06 100644 --- a/GithubAction-Dockerfile +++ b/GithubAction-Dockerfile @@ -1,4 +1,4 @@ -FROM becheran/mlc:0.14.1 +FROM becheran/mlc:0.14.2 LABEL repository="https://github.com/becheran/mlc" diff --git a/README.md b/README.md index 6e24851..49d8d52 100644 --- a/README.md +++ b/README.md @@ -35,14 +35,14 @@ Use *mlc* in GitHub using the *GitHub-Action* from the [Marketplace](https://git ``` yaml - name: Markup Link Checker (mlc) - uses: becheran/mlc@v0.14.1 + uses: becheran/mlc@v0.14.2 ``` Use *mlc* [command line arguments](./docs/reference.md) using the `with` argument: ``` yaml - name: Markup Link Checker (mlc) - uses: becheran/mlc@v0.14.1 + uses: becheran/mlc@v0.14.2 with: args: ./README.md ``` @@ -52,7 +52,7 @@ Use *mlc* [command line arguments](./docs/reference.md) using the `with` argumen 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.14.1/mlc -o mlc +curl -L https://github.com/becheran/mlc/releases/download/v0.14.2/mlc -o mlc chmod +x mlc ```