Bump version to 0.8.1 (#396)

This commit is contained in:
Matthias 2021-11-18 00:59:28 +01:00 committed by GitHub
parent 4008c2ce38
commit 30a0fd3856
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 10 additions and 12 deletions

4
Cargo.lock generated
View file

@ -1465,7 +1465,7 @@ dependencies = [
[[package]]
name = "lychee"
version = "0.8.0"
version = "0.8.1"
dependencies = [
"anyhow",
"assert_cmd",
@ -1497,7 +1497,7 @@ dependencies = [
[[package]]
name = "lychee-lib"
version = "0.8.0"
version = "0.8.1"
dependencies = [
"cached",
"check-if-email-exists",

View file

@ -4,7 +4,6 @@
[![docs.rs](https://docs.rs/lychee/badge.svg)](https://docs.rs/lychee-lib)
[![GitHub Marketplace](https://img.shields.io/badge/Marketplace-lychee-blue.svg?colorA=24292e&colorB=0366d6&style=flat&longCache=true&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAM6wAADOsB5dZE0gAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAERSURBVCiRhZG/SsMxFEZPfsVJ61jbxaF0cRQRcRJ9hlYn30IHN/+9iquDCOIsblIrOjqKgy5aKoJQj4O3EEtbPwhJbr6Te28CmdSKeqzeqr0YbfVIrTBKakvtOl5dtTkK+v4HfA9PEyBFCY9AGVgCBLaBp1jPAyfAJ/AAdIEG0dNAiyP7+K1qIfMdonZic6+WJoBJvQlvuwDqcXadUuqPA1NKAlexbRTAIMvMOCjTbMwl1LtI/6KWJ5Q6rT6Ht1MA58AX8Apcqqt5r2qhrgAXQC3CZ6i1+KMd9TRu3MvA3aH/fFPnBodb6oe6HM8+lYHrGdRXW8M9bMZtPXUji69lmf5Cmamq7quNLFZXD9Rq7v0Bpc1o/tp0fisAAAAASUVORK5CYII=)](https://github.com/marketplace/actions/lychee-broken-link-checker)
⚡ A fast, async, resource-friendly link checker written in Rust.\
Finds broken hyperlinks and mail addresses inside Markdown, HTML, reStructuredText, or any other text file or website!
@ -74,7 +73,6 @@ apt install gcc pkg-config libc6-dev libssl-dev
cargo install lychee
```
## Features
This comparison is made on a best-effort basis. Please create a PR to fix
@ -244,7 +242,7 @@ OPTIONS:
-T, --threads <threads> Number of threads to utilize. Defaults to number of cores available to
the system
-t, --timeout <timeout> Website timeout from connect to response finished [default: 20]
-u, --user-agent <user-agent> User agent [default: lychee/0.8.0]
-u, --user-agent <user-agent> User agent [default: lychee/0.8.1]
ARGS:
<inputs>... The inputs (where to get links to check from). These can be: files (e.g. `README.md`), file globs

View file

@ -8,7 +8,7 @@ name = "builder"
path = "builder.rs"
[dependencies]
lychee-lib = { path = "../../lychee-lib", version = "0.8.0" }
lychee-lib = { path = "../../lychee-lib", version = "0.8.1" }
tokio = { version = "1.14.0", features = ["full"] }
regex = "1.4.6"
http = "0.2.5"

View file

@ -8,5 +8,5 @@ name = "client_pool"
path = "client_pool.rs"
[dependencies]
lychee-lib = { path = "../../lychee-lib", version = "0.8.0" }
lychee-lib = { path = "../../lychee-lib", version = "0.8.1" }
tokio = { version = "1.14.0", features = ["full"] }

View file

@ -8,7 +8,7 @@ name = "collect_links"
path = "collect_links.rs"
[dependencies]
lychee-lib = { path = "../../lychee-lib", version = "0.8.0" }
lychee-lib = { path = "../../lychee-lib", version = "0.8.1" }
tokio = { version = "1.14.0", features = ["full"] }
regex = "1.4.6"
http = "0.2.5"

View file

@ -8,5 +8,5 @@ name = "simple"
path = "simple.rs"
[dependencies]
lychee-lib = { path = "../../lychee-lib", version = "0.8.0" }
lychee-lib = { path = "../../lychee-lib", version = "0.8.1" }
tokio = { version = "1.14.0", features = ["full"] }

View file

@ -14,10 +14,10 @@ keywords = [
]
license = "Apache-2.0/MIT"
repository = "https://github.com/lycheeverse/lychee"
version = "0.8.0"
version = "0.8.1"
[dependencies]
lychee-lib = { path = "../lychee-lib", version = "0.8.0" }
lychee-lib = { path = "../lychee-lib", version = "0.8.1" }
anyhow = "1.0.44"
console = "0.15.0"
headers = "0.3.5"

View file

@ -14,7 +14,7 @@ keywords = [
]
license = "Apache-2.0/MIT"
repository = "https://github.com/lycheeverse/lychee"
version = "0.8.0"
version = "0.8.1"
[dependencies]
check-if-email-exists = "0.8.25"