diff --git a/Cargo.lock b/Cargo.lock index 9fd2b11..55f42cd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2344,7 +2344,7 @@ dependencies = [ [[package]] name = "lychee" -version = "0.14.3" +version = "0.15.0" dependencies = [ "anyhow", "assert-json-diff", @@ -2389,7 +2389,7 @@ dependencies = [ [[package]] name = "lychee-lib" -version = "0.14.3" +version = "0.15.0" dependencies = [ "async-stream", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 7e299a5..8aa2c32 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["lychee-bin", "lychee-lib", "examples/*", "benches"] resolver = "2" [workspace.package] -version = "0.14.3" +version = "0.15.0" [profile.release] debug = true diff --git a/README.md b/README.md index 3dffa8c..f6e3974 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.14.3 + rev: 0.15.0 hooks: - id: lychee # Optionally include additional CLI arguments diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index 8fec633..eec7fa0 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.14.3", default-features = false } +lychee-lib = { path = "../lychee-lib", version = "0.15.0", default-features = false } anyhow = "1.0.82" assert-json-diff = "2.0.2"