Skip to content

Commit

Permalink
Prepare for release v0.10.0 (#629)
Browse files Browse the repository at this point in the history
  • Loading branch information
mre authored May 30, 2022
1 parent 611f74f commit b40aacd
Show file tree
Hide file tree
Showing 10 changed files with 335 additions and 338 deletions.
643 changes: 320 additions & 323 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,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.9.0]
-u, --user-agent <user-agent> User agent [default: lychee/0.10.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.9.0" }
lychee-lib = { path = "../../lychee-lib", version = "0.10.0" }
tokio = { version = "1.18.2", features = ["full"] }
regex = "1.5.6"
http = "0.2.7"
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.9.0" }
lychee-lib = { path = "../../lychee-lib", version = "0.10.0" }
tokio = { version = "1.18.2", 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.9.0" }
lychee-lib = { path = "../../lychee-lib", version = "0.10.0" }
tokio = { version = "1.18.2", features = ["full"] }
regex = "1.5.6"
http = "0.2.7"
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.9.0" }
lychee-lib = { path = "../../lychee-lib", version = "0.10.0" }
tokio = { version = "1.18.2", 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.9.0" }
lychee-lib = { path = "../../lychee-lib", version = "0.10.0" }
tokio = { version = "1.18.2", features = ["full"] }
10 changes: 5 additions & 5 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.9.0"
version = "0.10.0"

[dependencies]
lychee-lib = { path = "../lychee-lib", version = "0.9.0", default-features = false }
lychee-lib = { path = "../lychee-lib", version = "0.10.0", default-features = false }
anyhow = "1.0.57"
console = "0.15.0"
const_format = "0.2.24"
Expand All @@ -33,16 +33,16 @@ reqwest = { version = "0.11.10", features = ["gzip"] }
# This is necessary for the homebrew build
# https://github.com/Homebrew/homebrew-core/pull/70216
ring = "0.16.20"
serde = { version = "1.0.136", features = ["derive"] }
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
structopt = "0.3.26"
tabled = "0.6.1"
tabled = "0.7.0"
tokio = { version = "1.18.2", features = ["full"] }
toml = "0.5.9"
futures = "0.3.21"
tokio-stream = "0.1.8"
once_cell = "1.12.0"
dashmap = { version = "5.2.0", features = ["serde"] }
dashmap = { version = "5.3.4", features = ["serde"] }
csv = "1.1.6"
humantime = "2.1.0"
secrecy = { version = "0.8.0", features = ["serde"] }
Expand Down
4 changes: 2 additions & 2 deletions lychee-bin/src/formatters/stats/markdown.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::fmt::{self, Display};

use super::StatsFormatter;
use anyhow::Result;
use tabled::{Alignment, Full, Modify, Table, Tabled};
use tabled::{object::Segment, Alignment, Modify, Table, Tabled};

use crate::stats::ResponseStats;

Expand Down Expand Up @@ -48,7 +48,7 @@ fn stats_table(stats: &ResponseStats) -> String {
let style = tabled::Style::github_markdown().header_intersection('|');

Table::new(stats)
.with(Modify::new(Full).with(Alignment::left()))
.with(Modify::new(Segment::all()).with(Alignment::left()))
.with(style)
.to_string()
}
Expand Down
4 changes: 2 additions & 2 deletions 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.9.0"
version = "0.10.0"

[dependencies]
check-if-email-exists = "0.8.29"
Expand All @@ -33,7 +33,7 @@ reqwest = { version = "0.11.10", features = ["gzip", "trust-dns"] }
# This is necessary for the homebrew build
# https://github.com/Homebrew/homebrew-core/pull/70216
ring = "0.16.20"
serde = { version = "1.0.136", features = ["derive"] }
serde = { version = "1.0.137", features = ["derive"] }
shellexpand = "2.1.0"
tokio = { version = "1.18.2", features = ["full"] }
typed-builder = "0.10.0"
Expand Down

0 comments on commit b40aacd

Please sign in to comment.