Skip to content

Commit

Permalink
Bump version to v0.9.0 (#560)
Browse files Browse the repository at this point in the history
  • Loading branch information
mre authored Mar 22, 2022
1 parent 0d9e500 commit 328c965
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 13 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 @@ -6,8 +6,6 @@
[![Check Links](https://github.com/lycheeverse/lychee/actions/workflows/links.yml/badge.svg)](https://github.com/lycheeverse/lychee/actions/workflows/links.yml)
[![Docker Pulls](https://img.shields.io/docker/pulls/lycheeverse/lychee?color=%23099cec&logo=Docker&style=flat-square)](https://hub.docker.com/r/lycheeverse/lychee)



⚡ A fast, async, stream-based 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 @@ -257,7 +255,7 @@ OPTIONS:
the system
-t, --timeout <timeout> Website timeout in seconds from connect to response finished [default:
20]
-u, --user-agent <user-agent> User agent [default: lychee/0.8.2]
-u, --user-agent <user-agent> User agent [default: lychee/0.9.0]
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.2" }
lychee-lib = { path = "../../lychee-lib", version = "0.9.0" }
tokio = { version = "1.16.1", features = ["full"] }
regex = "1.5.5"
http = "0.2.6"
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 @@ -10,5 +10,5 @@ path = "client_pool.rs"
[dependencies]
futures = "0.3.21"
tokio-stream = "0.1.8"
lychee-lib = { path = "../../lychee-lib", version = "0.8.2" }
lychee-lib = { path = "../../lychee-lib", version = "0.9.0" }
tokio = { version = "1.16.1", 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.2" }
lychee-lib = { path = "../../lychee-lib", version = "0.9.0" }
tokio = { version = "1.16.1", features = ["full"] }
regex = "1.5.5"
http = "0.2.6"
Expand Down
2 changes: 1 addition & 1 deletion examples/extract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ name = "extract"
path = "extract.rs"

[dependencies]
lychee-lib = { path = "../../lychee-lib", version = "0.8.2" }
lychee-lib = { path = "../../lychee-lib", version = "0.9.0" }
tokio = { version = "1.16.1", features = ["full"] }
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.2" }
lychee-lib = { path = "../../lychee-lib", version = "0.9.0" }
tokio = { version = "1.16.1", 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.2"
version = "0.9.0"

[dependencies]
lychee-lib = { path = "../lychee-lib", version = "0.8.2", default-features = false }
lychee-lib = { path = "../lychee-lib", version = "0.9.0", default-features = false }
anyhow = "1.0.56"
console = "0.15.0"
const_format = "0.2.22"
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.2"
version = "0.9.0"

[dependencies]
check-if-email-exists = "0.8.29"
Expand Down

0 comments on commit 328c965

Please sign in to comment.