Skip to content

Commit 6306883

Browse files
committed
Bump version to 0.14.2
1 parent ad3ba31 commit 6306883

File tree

4 files changed

+22
-23
lines changed

4 files changed

+22
-23
lines changed

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ Options:
336336
-u, --user-agent <USER_AGENT>
337337
User agent
338338
339-
[default: lychee/0.14.1]
339+
[default: lychee/0.14.2]
340340
341341
-i, --insecure
342342
Proceed for server connections considered insecure (invalid TLS)

lychee-bin/Cargo.toml

+12-11
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,16 @@ description = "A fast, async link checker"
55
documentation = "https://docs.rs/lychee"
66
homepage = "https://github.com/lycheeverse/lychee"
77
edition = "2021"
8-
keywords = [
9-
"link",
10-
"checker",
11-
"cli",
12-
"link-checker",
13-
"validator",
14-
]
8+
keywords = ["link", "checker", "cli", "link-checker", "validator"]
159
license = "Apache-2.0 OR MIT"
1610
repository = "https://github.com/lycheeverse/lychee"
17-
version = "0.14.1"
11+
version = "0.14.2"
1812
readme = "../README.md"
1913

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

2519
anyhow = "1.0.78"
2620
assert-json-diff = "2.0.2"
@@ -41,7 +35,10 @@ once_cell = "1.19.0"
4135
openssl-sys = { version = "0.9.98", optional = true }
4236
pad = "0.1.6"
4337
regex = "1.10.2"
44-
reqwest = { version = "0.11.23", default-features = false, features = ["gzip", "json"] }
38+
reqwest = { version = "0.11.23", default-features = false, features = [
39+
"gzip",
40+
"json",
41+
] }
4542
reqwest_cookie_store = "0.6.0"
4643
# Make build work on Apple Silicon.
4744
# See https://github.com/briansmith/ring/issues/1163
@@ -63,7 +60,11 @@ assert_cmd = "2.0.12"
6360
predicates = "3.0.4"
6461
pretty_assertions = "1.4.0"
6562
tempfile = "3.9.0"
66-
tracing-subscriber = { version = "0.3.18", default-features = false, features = ["fmt", "registry", "env-filter"] }
63+
tracing-subscriber = { version = "0.3.18", default-features = false, features = [
64+
"fmt",
65+
"registry",
66+
"env-filter",
67+
] }
6768
uuid = { version = "1.6.1", features = ["v4"] }
6869
wiremock = "0.5.22"
6970

lychee-lib/Cargo.toml

+7-9
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,10 @@ description = "A fast, async link checker"
55
documentation = "https://docs.rs/lychee_lib"
66
edition = "2021"
77
homepage = "https://github.com/lycheeverse/lychee"
8-
keywords = [
9-
"link",
10-
"checker",
11-
"cli",
12-
"link-checker",
13-
"validator",
14-
]
8+
keywords = ["link", "checker", "cli", "link-checker", "validator"]
159
license = "Apache-2.0 OR MIT"
1610
repository = "https://github.com/lycheeverse/lychee"
17-
version = "0.14.1"
11+
version = "0.14.2"
1812
readme = "../README.md"
1913

2014
[dependencies]
@@ -42,7 +36,11 @@ pulldown-cmark = "0.9.3"
4236
regex = "1.10.2"
4337
# Use trust-dns to avoid lookup failures on high concurrency
4438
# https://github.com/seanmonstar/reqwest/issues/296
45-
reqwest = { version = "0.11.23", default-features = false, features = ["gzip", "trust-dns", "cookies"] }
39+
reqwest = { version = "0.11.23", default-features = false, features = [
40+
"gzip",
41+
"trust-dns",
42+
"cookies",
43+
] }
4644
reqwest_cookie_store = "0.6.0"
4745
# Make build work on Apple Silicon.
4846
# See https://github.com/briansmith/ring/issues/1163

0 commit comments

Comments
 (0)