From b76285c193c678838ee2409e242c71980df50fd4 Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 27 Jul 2022 10:48:36 +0200 Subject: [PATCH] Bump version (#703) --- 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 268be5e26a..41101b9142 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1774,7 +1774,7 @@ dependencies = [ [[package]] name = "lychee" -version = "0.10.0" +version = "0.10.1" dependencies = [ "anyhow", "assert_cmd", @@ -1814,7 +1814,7 @@ dependencies = [ [[package]] name = "lychee-lib" -version = "0.10.0" +version = "0.10.1" dependencies = [ "async-stream", "cached", diff --git a/README.md b/README.md index ada7baf57b..c3ae8fef6b 100644 --- a/README.md +++ b/README.md @@ -261,7 +261,7 @@ OPTIONS: the system -t, --timeout Website timeout in seconds from connect to response finished [default: 20] - -u, --user-agent User agent [default: lychee/0.10.0] + -u, --user-agent User agent [default: lychee/0.10.1] ARGS: ... The inputs (where to get links to check from). These can be: files (e.g. `README.md`), file globs diff --git a/examples/builder/Cargo.toml b/examples/builder/Cargo.toml index 599b22e5a8..fa90854dcc 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.0" } +lychee-lib = { path = "../../lychee-lib", version = "0.10.1" } tokio = { version = "1.20.1", features = ["full"] } regex = "1.6.0" http = "0.2.8" diff --git a/examples/client_pool/Cargo.toml b/examples/client_pool/Cargo.toml index 2a9238bfe0..e790028f71 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.21" tokio-stream = "0.1.9" -lychee-lib = { path = "../../lychee-lib", version = "0.10.0" } +lychee-lib = { path = "../../lychee-lib", version = "0.10.1" } tokio = { version = "1.20.1", features = ["full"] } diff --git a/examples/collect_links/Cargo.toml b/examples/collect_links/Cargo.toml index bb2bf94575..22296f0cef 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.0" } +lychee-lib = { path = "../../lychee-lib", version = "0.10.1" } tokio = { version = "1.20.1", features = ["full"] } regex = "1.6.0" http = "0.2.8" diff --git a/examples/extract/Cargo.toml b/examples/extract/Cargo.toml index 99370a97c6..9ba0e6eef8 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.0" } +lychee-lib = { path = "../../lychee-lib", version = "0.10.1" } tokio = { version = "1.20.1", features = ["full"] } diff --git a/examples/simple/Cargo.toml b/examples/simple/Cargo.toml index 187d632c93..d5414354a7 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.0" } +lychee-lib = { path = "../../lychee-lib", version = "0.10.1" } tokio = { version = "1.20.1", features = ["full"] } diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index 32791bd33e..262c14f84c 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.0" +version = "0.10.1" [dependencies] -lychee-lib = { path = "../lychee-lib", version = "0.10.0", default-features = false } +lychee-lib = { path = "../lychee-lib", version = "0.10.1", default-features = false } anyhow = "1.0.58" console = "0.15.0" const_format = "0.2.26" diff --git a/lychee-lib/Cargo.toml b/lychee-lib/Cargo.toml index 4d2666b669..962754c661 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.0" +version = "0.10.1" [dependencies] check-if-email-exists = "0.8.30"