Skip to content

Commit d631b57

Browse files
authored
chore: release v0.24.0
1 parent eb77b49 commit d631b57

5 files changed

Lines changed: 56 additions & 5 deletions

File tree

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["lychee-bin", "lychee-lib", "examples/*", "benches", "test-utils"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.23.0"
6+
version = "0.24.0"
77

88
[profile.release]
99
debug = true

lychee-bin/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.24.0](https://github.com/lycheeverse/lychee/compare/lychee-v0.23.0...lychee-v0.24.0) - 2026-03-10
11+
12+
### Added
13+
14+
- allow accepting timeouts ([#2063](https://github.com/lycheeverse/lychee/pull/2063))
15+
- Support multiple config files ([#2007](https://github.com/lycheeverse/lychee/pull/2007))
16+
17+
### Other
18+
19+
- *(deps)* bump the dependencies group with 3 updates
20+
- Add Tor Project's support website
21+
- Add JUnit format ([#2066](https://github.com/lycheeverse/lychee/pull/2066))
22+
- Prevent duplicate requests to the same URLs ([#2067](https://github.com/lycheeverse/lychee/pull/2067))
23+
- *(deps)* bump the dependencies group with 3 updates
24+
- add WaitGroup for waiting for a dynamic set of tasks ([#2046](https://github.com/lycheeverse/lychee/pull/2046))
25+
- Show line & column numbers ([#2056](https://github.com/lycheeverse/lychee/pull/2056))
26+
- *(deps)* bump the dependencies group with 6 updates
27+
- Fix toc action ([#2055](https://github.com/lycheeverse/lychee/pull/2055))
28+
- [**breaking**] add BaseInfo for resolving links, delete Base, cleanup utils ([#2005](https://github.com/lycheeverse/lychee/pull/2005))
29+
- Document file format support ([#2052](https://github.com/lycheeverse/lychee/pull/2052))
30+
- Improve help message as proposed by @katrinafyi
31+
- *(deps)* bump the dependencies group with 8 updates
32+
- Update changelogs
33+
1034
## [0.23.0](https://github.com/lycheeverse/lychee/compare/lychee-v0.22.0...lychee-v0.23.0) - 2026-02-13
1135

1236
### Added

lychee-bin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ rust-version = "1.88.0"
1515
[dependencies]
1616
# NOTE: We need to specify the version of lychee-lib here because crates.io
1717
# requires all dependencies to have a version number.
18-
lychee-lib = { path = "../lychee-lib", version = "0.23.0", default-features = false }
18+
lychee-lib = { path = "../lychee-lib", version = "0.24.0", default-features = false }
1919

2020
anyhow = "1.0.102"
2121
assert-json-diff = "2.0.2"

lychee-lib/CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.24.0](https://github.com/lycheeverse/lychee/compare/lychee-lib-v0.23.0...lychee-lib-v0.24.0) - 2026-03-10
11+
12+
### Added
13+
14+
- allow accepting timeouts ([#2063](https://github.com/lycheeverse/lychee/pull/2063))
15+
- Support multiple config files ([#2007](https://github.com/lycheeverse/lychee/pull/2007))
16+
17+
### Other
18+
19+
- Remove file url trailing slash warning ([#2083](https://github.com/lycheeverse/lychee/pull/2083))
20+
- *(deps)* bump the dependencies group with 3 updates
21+
- Box ErrorKind & RawUri within RequestError to fix oversize lint ([#2079](https://github.com/lycheeverse/lychee/pull/2079))
22+
- Remove deduplication of requests ([#2075](https://github.com/lycheeverse/lychee/pull/2075))
23+
- Add Tor Project's support website
24+
- Add JUnit format ([#2066](https://github.com/lycheeverse/lychee/pull/2066))
25+
- Prevent duplicate requests to the same URLs ([#2067](https://github.com/lycheeverse/lychee/pull/2067))
26+
- *(deps)* bump the dependencies group with 3 updates
27+
- add WaitGroup for waiting for a dynamic set of tasks ([#2046](https://github.com/lycheeverse/lychee/pull/2046))
28+
- Show line & column numbers ([#2056](https://github.com/lycheeverse/lychee/pull/2056))
29+
- *(deps)* bump the dependencies group with 6 updates
30+
- Fix toc action ([#2055](https://github.com/lycheeverse/lychee/pull/2055))
31+
- [**breaking**] add BaseInfo for resolving links, delete Base, cleanup utils ([#2005](https://github.com/lycheeverse/lychee/pull/2005))
32+
- Document file format support ([#2052](https://github.com/lycheeverse/lychee/pull/2052))
33+
- Improve help message as proposed by @katrinafyi
34+
- *(deps)* bump the dependencies group with 8 updates
35+
- Update changelogs
36+
1037
## [0.23.0](https://github.com/lycheeverse/lychee/compare/lychee-lib-v0.22.0...lychee-lib-v0.23.0) - 2026-02-13
1138

1239
### Added

0 commit comments

Comments
 (0)