Skip to content

Commit

Permalink
Bump version to 0.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mre committed Jan 26, 2024
1 parent ad3ba31 commit 6306883
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 23 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.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ Options:
-u, --user-agent <USER_AGENT>
User agent
[default: lychee/0.14.1]
[default: lychee/0.14.2]
-i, --insecure
Proceed for server connections considered insecure (invalid TLS)
Expand Down
23 changes: 12 additions & 11 deletions lychee-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,16 @@ description = "A fast, async link checker"
documentation = "https://docs.rs/lychee"
homepage = "https://github.com/lycheeverse/lychee"
edition = "2021"
keywords = [
"link",
"checker",
"cli",
"link-checker",
"validator",
]
keywords = ["link", "checker", "cli", "link-checker", "validator"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/lycheeverse/lychee"
version = "0.14.1"
version = "0.14.2"
readme = "../README.md"

[dependencies]
# NOTE: We need to specify the version of lychee-lib here because crates.io
# requires all dependencies to have a version number.
lychee-lib = { path = "../lychee-lib", version = "0.14.1", default-features = false }
lychee-lib = { path = "../lychee-lib", version = "0.14.2", default-features = false }

anyhow = "1.0.78"
assert-json-diff = "2.0.2"
Expand All @@ -41,7 +35,10 @@ once_cell = "1.19.0"
openssl-sys = { version = "0.9.98", optional = true }
pad = "0.1.6"
regex = "1.10.2"
reqwest = { version = "0.11.23", default-features = false, features = ["gzip", "json"] }
reqwest = { version = "0.11.23", default-features = false, features = [
"gzip",
"json",
] }
reqwest_cookie_store = "0.6.0"
# Make build work on Apple Silicon.
# See https://github.com/briansmith/ring/issues/1163
Expand All @@ -63,7 +60,11 @@ assert_cmd = "2.0.12"
predicates = "3.0.4"
pretty_assertions = "1.4.0"
tempfile = "3.9.0"
tracing-subscriber = { version = "0.3.18", default-features = false, features = ["fmt", "registry", "env-filter"] }
tracing-subscriber = { version = "0.3.18", default-features = false, features = [
"fmt",
"registry",
"env-filter",
] }
uuid = { version = "1.6.1", features = ["v4"] }
wiremock = "0.5.22"

Expand Down
16 changes: 7 additions & 9 deletions lychee-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,10 @@ description = "A fast, async link checker"
documentation = "https://docs.rs/lychee_lib"
edition = "2021"
homepage = "https://github.com/lycheeverse/lychee"
keywords = [
"link",
"checker",
"cli",
"link-checker",
"validator",
]
keywords = ["link", "checker", "cli", "link-checker", "validator"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/lycheeverse/lychee"
version = "0.14.1"
version = "0.14.2"
readme = "../README.md"

[dependencies]
Expand Down Expand Up @@ -42,7 +36,11 @@ pulldown-cmark = "0.9.3"
regex = "1.10.2"
# Use trust-dns to avoid lookup failures on high concurrency
# https://github.com/seanmonstar/reqwest/issues/296
reqwest = { version = "0.11.23", default-features = false, features = ["gzip", "trust-dns", "cookies"] }
reqwest = { version = "0.11.23", default-features = false, features = [
"gzip",
"trust-dns",
"cookies",
] }
reqwest_cookie_store = "0.6.0"
# Make build work on Apple Silicon.
# See https://github.com/briansmith/ring/issues/1163
Expand Down

0 comments on commit 6306883

Please sign in to comment.