Skip to content

Commit

Permalink
Bump version to 0.8.1 (#396)
Browse files Browse the repository at this point in the history
  • Loading branch information
mre authored Nov 17, 2021
1 parent 4008c2c commit 30a0fd3
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/client_pool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion examples/collect_links/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/simple/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
4 changes: 2 additions & 2 deletions lychee-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion lychee-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 30a0fd3

Please sign in to comment.