From 6306883cc24f48fa276f4cf5be0e7d66d699ac1a Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 26 Jan 2024 15:04:09 +0100 Subject: [PATCH] Bump version to 0.14.2 --- Cargo.lock | 4 ++-- README.md | 2 +- lychee-bin/Cargo.toml | 23 ++++++++++++----------- lychee-lib/Cargo.toml | 16 +++++++--------- 4 files changed, 22 insertions(+), 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a3d3ac9af3..e860287ff8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2346,7 +2346,7 @@ dependencies = [ [[package]] name = "lychee" -version = "0.14.1" +version = "0.14.2" dependencies = [ "anyhow", "assert-json-diff", @@ -2391,7 +2391,7 @@ dependencies = [ [[package]] name = "lychee-lib" -version = "0.14.1" +version = "0.14.2" dependencies = [ "async-stream", "cached", diff --git a/README.md b/README.md index fd03ccd024..addeeef724 100644 --- a/README.md +++ b/README.md @@ -336,7 +336,7 @@ Options: -u, --user-agent User agent - [default: lychee/0.14.1] + [default: lychee/0.14.2] -i, --insecure Proceed for server connections considered insecure (invalid TLS) diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index 7f3c75e590..eb94b43c67 100644 --- a/lychee-bin/Cargo.toml +++ b/lychee-bin/Cargo.toml @@ -5,22 +5,16 @@ description = "A fast, async link checker" documentation = "https://docs.rs/lychee" homepage = "https://github.com/lycheeverse/lychee" edition = "2021" -keywords = [ - "link", - "checker", - "cli", - "link-checker", - "validator", -] +keywords = ["link", "checker", "cli", "link-checker", "validator"] license = "Apache-2.0 OR MIT" repository = "https://github.com/lycheeverse/lychee" -version = "0.14.1" +version = "0.14.2" readme = "../README.md" [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.1", default-features = false } +lychee-lib = { path = "../lychee-lib", version = "0.14.2", default-features = false } anyhow = "1.0.78" assert-json-diff = "2.0.2" @@ -41,7 +35,10 @@ once_cell = "1.19.0" openssl-sys = { version = "0.9.98", optional = true } pad = "0.1.6" regex = "1.10.2" -reqwest = { version = "0.11.23", default-features = false, features = ["gzip", "json"] } +reqwest = { version = "0.11.23", default-features = false, features = [ + "gzip", + "json", +] } reqwest_cookie_store = "0.6.0" # Make build work on Apple Silicon. # See https://github.com/briansmith/ring/issues/1163 @@ -63,7 +60,11 @@ assert_cmd = "2.0.12" predicates = "3.0.4" pretty_assertions = "1.4.0" tempfile = "3.9.0" -tracing-subscriber = { version = "0.3.18", default-features = false, features = ["fmt", "registry", "env-filter"] } +tracing-subscriber = { version = "0.3.18", default-features = false, features = [ + "fmt", + "registry", + "env-filter", +] } uuid = { version = "1.6.1", features = ["v4"] } wiremock = "0.5.22" diff --git a/lychee-lib/Cargo.toml b/lychee-lib/Cargo.toml index 52765c6dc0..9c8a8a8018 100644 --- a/lychee-lib/Cargo.toml +++ b/lychee-lib/Cargo.toml @@ -5,16 +5,10 @@ description = "A fast, async link checker" documentation = "https://docs.rs/lychee_lib" edition = "2021" homepage = "https://github.com/lycheeverse/lychee" -keywords = [ - "link", - "checker", - "cli", - "link-checker", - "validator", -] +keywords = ["link", "checker", "cli", "link-checker", "validator"] license = "Apache-2.0 OR MIT" repository = "https://github.com/lycheeverse/lychee" -version = "0.14.1" +version = "0.14.2" readme = "../README.md" [dependencies] @@ -42,7 +36,11 @@ pulldown-cmark = "0.9.3" regex = "1.10.2" # Use trust-dns to avoid lookup failures on high concurrency # https://github.com/seanmonstar/reqwest/issues/296 -reqwest = { version = "0.11.23", default-features = false, features = ["gzip", "trust-dns", "cookies"] } +reqwest = { version = "0.11.23", default-features = false, features = [ + "gzip", + "trust-dns", + "cookies", +] } reqwest_cookie_store = "0.6.0" # Make build work on Apple Silicon. # See https://github.com/briansmith/ring/issues/1163