Bump to version 0.15.1

This commit is contained in:
Thomas Zahner 2024-04-29 09:28:34 +02:00
parent 0956ec6c38
commit 0a54079d01
4 changed files with 5 additions and 5 deletions

4
Cargo.lock generated
View file

@ -2371,7 +2371,7 @@ dependencies = [
[[package]] [[package]]
name = "lychee" name = "lychee"
version = "0.15.0" version = "0.15.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"assert-json-diff", "assert-json-diff",
@ -2416,7 +2416,7 @@ dependencies = [
[[package]] [[package]]
name = "lychee-lib" name = "lychee-lib"
version = "0.15.0" version = "0.15.1"
dependencies = [ dependencies = [
"async-stream", "async-stream",
"async-trait", "async-trait",

View file

@ -3,7 +3,7 @@ members = ["lychee-bin", "lychee-lib", "examples/*", "benches"]
resolver = "2" resolver = "2"
[workspace.package] [workspace.package]
version = "0.15.0" version = "0.15.1"
[profile.release] [profile.release]
debug = true debug = true

View file

@ -566,7 +566,7 @@ Lychee can also be used as a [pre-commit](https://pre-commit.com/) hook.
# .pre-commit-config.yaml # .pre-commit-config.yaml
repos: repos:
- repo: https://github.com/lycheeverse/lychee.git - repo: https://github.com/lycheeverse/lychee.git
rev: 0.15.0 rev: 0.15.1
hooks: hooks:
- id: lychee - id: lychee
# Optionally include additional CLI arguments # Optionally include additional CLI arguments

View file

@ -14,7 +14,7 @@ version.workspace = true
[dependencies] [dependencies]
# NOTE: We need to specify the version of lychee-lib here because crates.io # NOTE: We need to specify the version of lychee-lib here because crates.io
# requires all dependencies to have a version number. # 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" anyhow = "1.0.82"
assert-json-diff = "2.0.2" assert-json-diff = "2.0.2"