From 123742a8b413d9c67300d3d5578b8e9cdd8304a9 Mon Sep 17 00:00:00 2001 From: Matthias Endler Date: Wed, 22 Feb 2023 21:35:38 +0100 Subject: [PATCH] Bump to v0.11.0 (#957) --- Cargo.lock | 4 ++-- README.md | 2 +- examples/builder/Cargo.toml | 2 +- examples/client_pool/Cargo.toml | 2 +- examples/collect_links/Cargo.toml | 2 +- examples/extract/Cargo.toml | 2 +- examples/simple/Cargo.toml | 2 +- lychee-bin/Cargo.toml | 4 ++-- lychee-lib/Cargo.toml | 2 +- 9 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a47fe9c33c..3fe6996dea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1968,7 +1968,7 @@ dependencies = [ [[package]] name = "lychee" -version = "0.10.3" +version = "0.11.0" dependencies = [ "anyhow", "assert_cmd", @@ -2010,7 +2010,7 @@ dependencies = [ [[package]] name = "lychee-lib" -version = "0.10.3" +version = "0.11.0" dependencies = [ "async-stream", "cached", diff --git a/README.md b/README.md index bd43a50408..a1c57e18d2 100644 --- a/README.md +++ b/README.md @@ -271,7 +271,7 @@ Options: -u, --user-agent User agent - [default: lychee/0.10.3] + [default: lychee/0.11.0] -i, --insecure Proceed for server connections considered insecure (invalid TLS) diff --git a/examples/builder/Cargo.toml b/examples/builder/Cargo.toml index 5980f320f5..43fcaef714 100644 --- a/examples/builder/Cargo.toml +++ b/examples/builder/Cargo.toml @@ -8,7 +8,7 @@ name = "builder" path = "builder.rs" [dependencies] -lychee-lib = { path = "../../lychee-lib", version = "0.10.1" } +lychee-lib = { path = "../../lychee-lib", version = "0.11.0" } tokio = { version = "1.25.0", features = ["full"] } regex = "1.7.1" http = "0.2.9" diff --git a/examples/client_pool/Cargo.toml b/examples/client_pool/Cargo.toml index 9e8d8a8589..32f2c22579 100644 --- a/examples/client_pool/Cargo.toml +++ b/examples/client_pool/Cargo.toml @@ -10,5 +10,5 @@ path = "client_pool.rs" [dependencies] futures = "0.3.26" tokio-stream = "0.1.12" -lychee-lib = { path = "../../lychee-lib", version = "0.10.1" } +lychee-lib = { path = "../../lychee-lib", version = "0.11.0" } tokio = { version = "1.25.0", features = ["full"] } diff --git a/examples/collect_links/Cargo.toml b/examples/collect_links/Cargo.toml index 7f41c2483f..e9a1db5038 100644 --- a/examples/collect_links/Cargo.toml +++ b/examples/collect_links/Cargo.toml @@ -8,7 +8,7 @@ name = "collect_links" path = "collect_links.rs" [dependencies] -lychee-lib = { path = "../../lychee-lib", version = "0.10.1" } +lychee-lib = { path = "../../lychee-lib", version = "0.11.0" } tokio = { version = "1.25.0", features = ["full"] } regex = "1.7.1" http = "0.2.9" diff --git a/examples/extract/Cargo.toml b/examples/extract/Cargo.toml index a443e72f4d..62511281c1 100644 --- a/examples/extract/Cargo.toml +++ b/examples/extract/Cargo.toml @@ -8,5 +8,5 @@ name = "extract" path = "extract.rs" [dependencies] -lychee-lib = { path = "../../lychee-lib", version = "0.10.1" } +lychee-lib = { path = "../../lychee-lib", version = "0.11.0" } tokio = { version = "1.25.0", features = ["full"] } diff --git a/examples/simple/Cargo.toml b/examples/simple/Cargo.toml index f52f675675..29f4a7bc8a 100644 --- a/examples/simple/Cargo.toml +++ b/examples/simple/Cargo.toml @@ -8,5 +8,5 @@ name = "simple" path = "simple.rs" [dependencies] -lychee-lib = { path = "../../lychee-lib", version = "0.10.1" } +lychee-lib = { path = "../../lychee-lib", version = "0.11.0" } tokio = { version = "1.25.0", features = ["full"] } diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index 4989e6966e..4afd610c3b 100644 --- a/lychee-bin/Cargo.toml +++ b/lychee-bin/Cargo.toml @@ -14,10 +14,10 @@ keywords = [ ] license = "Apache-2.0/MIT" repository = "https://github.com/lycheeverse/lychee" -version = "0.10.3" +version = "0.11.0" [dependencies] -lychee-lib = { path = "../lychee-lib", version = "0.10.3", default-features = false } +lychee-lib = { path = "../lychee-lib", version = "0.11.0", default-features = false } anyhow = "1.0.69" console = "0.15.5" const_format = "0.2.30" diff --git a/lychee-lib/Cargo.toml b/lychee-lib/Cargo.toml index 53091a20c1..3df187e77f 100644 --- a/lychee-lib/Cargo.toml +++ b/lychee-lib/Cargo.toml @@ -14,7 +14,7 @@ keywords = [ ] license = "Apache-2.0/MIT" repository = "https://github.com/lycheeverse/lychee" -version = "0.10.3" +version = "0.11.0" [dependencies] check-if-email-exists = "0.9.0"