From a98898238360d284c34eccf798680b70ba50b55b Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Wed, 26 Jul 2023 21:52:12 +0200 Subject: [PATCH] version 0.1.31 --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- package.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e60e99a..fec9908 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -372,7 +372,7 @@ dependencies = [ [[package]] name = "hyperlink" -version = "0.1.30" +version = "0.1.31" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index b7caf1d..32c07f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyperlink" -version = "0.1.30" +version = "0.1.31" authors = ["Markus Unterwaditzer "] description = "Very fast link checker for CI." homepage = "https://github.com/untitaker/hyperlink" diff --git a/README.md b/README.md index c592bc4..f1969af 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ A command-line tool to find broken links in your static site. ### GitHub action ```yaml -- uses: untitaker/hyperlink@0.1.30 +- uses: untitaker/hyperlink@0.1.31 with: args: public/ --sources src/ ``` @@ -67,7 +67,7 @@ hyperlink public/ --sources src/ ### Docker ```bash -docker run -v $PWD:/check ghcr.io/untitaker/hyperlink:0.1.30 /check/public/ --sources /check/src/ +docker run -v $PWD:/check ghcr.io/untitaker/hyperlink:0.1.31 /check/public/ --sources /check/src/ # specific commit docker run -v $PWD:/check ghcr.io/untitaker/hyperlink:sha-82ca78c /check/public/ --sources /check/src diff --git a/package.json b/package.json index 5835b4a..336ec3d 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@untitaker/hyperlink", "description": "Very fast link checker for CI.", "license": "MIT", - "version": "0.1.30", + "version": "0.1.31", "bin": { "hyperlink": "scripts/hyperlink-bin" },