From ed0efcd4f8d208e7bbd71c8c67e2841822d0f675 Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 28 Oct 2021 00:34:48 +0200 Subject: [PATCH] Prepare release --- Cargo.lock | 4 ++-- README.md | 2 +- examples/builder/Cargo.toml | 2 +- examples/client_pool/Cargo.toml | 2 +- examples/collect_links/Cargo.toml | 2 +- examples/simple/Cargo.toml | 2 +- lychee-bin/Cargo.toml | 4 ++-- lychee-lib/Cargo.toml | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 087ce7d63e..11ddea1643 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1565,7 +1565,7 @@ dependencies = [ [[package]] name = "lychee" -version = "0.7.2" +version = "0.8.0" dependencies = [ "anyhow", "assert_cmd", @@ -1597,7 +1597,7 @@ dependencies = [ [[package]] name = "lychee-lib" -version = "0.7.2" +version = "0.8.0" dependencies = [ "cached", "check-if-email-exists", diff --git a/README.md b/README.md index 2657d7c4ea..cf294bec8a 100644 --- a/README.md +++ b/README.md @@ -243,7 +243,7 @@ OPTIONS: -T, --threads Number of threads to utilize. Defaults to number of cores available to the system -t, --timeout Website timeout from connect to response finished [default: 20] - -u, --user-agent User agent [default: lychee/0.7.2] + -u, --user-agent User agent [default: lychee/0.8.0] 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 96f6b7089c..bb9dfaa2cd 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.7.2" } +lychee-lib = { path = "../../lychee-lib", version = "0.8.0" } tokio = { version = "1.12.0", features = ["full"] } regex = "1.4.6" http = "0.2.5" diff --git a/examples/client_pool/Cargo.toml b/examples/client_pool/Cargo.toml index 2f305e9ea5..a167b7d7b3 100644 --- a/examples/client_pool/Cargo.toml +++ b/examples/client_pool/Cargo.toml @@ -8,5 +8,5 @@ name = "client_pool" path = "client_pool.rs" [dependencies] -lychee-lib = { path = "../../lychee-lib", version = "0.7.2" } +lychee-lib = { path = "../../lychee-lib", version = "0.8.0" } tokio = { version = "1.12.0", features = ["full"] } diff --git a/examples/collect_links/Cargo.toml b/examples/collect_links/Cargo.toml index 5548f90f8b..8ba5731d34 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.7.2" } +lychee-lib = { path = "../../lychee-lib", version = "0.8.0" } tokio = { version = "1.12.0", features = ["full"] } regex = "1.4.6" http = "0.2.5" diff --git a/examples/simple/Cargo.toml b/examples/simple/Cargo.toml index eb80b8c414..73006375d8 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.7.2" } +lychee-lib = { path = "../../lychee-lib", version = "0.8.0" } tokio = { version = "1.12.0", features = ["full"] } \ No newline at end of file diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index 5bd9450d4b..4716cc4d8a 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.7.2" +version = "0.8.0" [dependencies] -lychee-lib = { path = "../lychee-lib", version = "0.7.2" } +lychee-lib = { path = "../lychee-lib", version = "0.8.0" } anyhow = "1.0.44" console = "0.15.0" headers = "0.3.5" diff --git a/lychee-lib/Cargo.toml b/lychee-lib/Cargo.toml index 94a6eebba3..6f2bd00c04 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.7.2" +version = "0.8.0" [dependencies] check-if-email-exists = "0.8.25"