From 7d8bbd36edf09027ec6e35b875527f62d4d9030d Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Thu, 24 Oct 2024 17:55:31 +0200 Subject: [PATCH] version 0.1.35 --- 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 f065578..a0d4c62 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -338,7 +338,7 @@ dependencies = [ [[package]] name = "hyperlink" -version = "0.1.34" +version = "0.1.35" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 28586b7..fefe9f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyperlink" -version = "0.1.34" +version = "0.1.35" authors = [ "Markus Unterwaditzer ", # contributed dump-external-links command diff --git a/README.md b/README.md index d862e7d..2a5e75e 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ A command-line tool to find broken links in your static site. ### GitHub action ```yaml -- uses: untitaker/hyperlink@0.1.34 +- uses: untitaker/hyperlink@0.1.35 with: args: public/ --sources src/ ``` @@ -60,7 +60,7 @@ hyperlink public/ --sources src/ ### Docker ```bash -docker run -v $PWD:/check ghcr.io/untitaker/hyperlink:0.1.34 /check/public/ --sources /check/src/ +docker run -v $PWD:/check ghcr.io/untitaker/hyperlink:0.1.35 /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 afe94ac..ac064e4 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.34", + "version": "0.1.35", "bin": { "hyperlink": "scripts/hyperlink-bin" },