From 0a54079d01ba9a4ff9850d8e46d3ba64743d2c8d Mon Sep 17 00:00:00 2001 From: Thomas Zahner Date: Mon, 29 Apr 2024 09:28:34 +0200 Subject: [PATCH] Bump to version 0.15.1 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- README.md | 2 +- lychee-bin/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9829e7e005..fd93bd9065 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2371,7 +2371,7 @@ dependencies = [ [[package]] name = "lychee" -version = "0.15.0" +version = "0.15.1" dependencies = [ "anyhow", "assert-json-diff", @@ -2416,7 +2416,7 @@ dependencies = [ [[package]] name = "lychee-lib" -version = "0.15.0" +version = "0.15.1" dependencies = [ "async-stream", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 8aa2c32515..3e34e95f73 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["lychee-bin", "lychee-lib", "examples/*", "benches"] resolver = "2" [workspace.package] -version = "0.15.0" +version = "0.15.1" [profile.release] debug = true diff --git a/README.md b/README.md index f6e397418f..5c2e3c057b 100644 --- a/README.md +++ b/README.md @@ -566,7 +566,7 @@ Lychee can also be used as a [pre-commit](https://pre-commit.com/) hook. # .pre-commit-config.yaml repos: - repo: https://github.com/lycheeverse/lychee.git - rev: 0.15.0 + rev: 0.15.1 hooks: - id: lychee # Optionally include additional CLI arguments diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index eec7fa0fae..800a297ecf 100644 --- a/lychee-bin/Cargo.toml +++ b/lychee-bin/Cargo.toml @@ -14,7 +14,7 @@ version.workspace = true [dependencies] # NOTE: We need to specify the version of lychee-lib here because crates.io # requires all dependencies to have a version number. -lychee-lib = { path = "../lychee-lib", version = "0.15.0", default-features = false } +lychee-lib = { path = "../lychee-lib", version = "0.15.1", default-features = false } anyhow = "1.0.82" assert-json-diff = "2.0.2"