mirror of
https://github.com/Hopiu/lychee.git
synced 2026-03-16 20:50:25 +00:00
chore: release v0.19.1 (#1726)
This commit is contained in:
parent
d512262ffa
commit
3592972d64
5 changed files with 21 additions and 4 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
|
@ -2490,7 +2490,7 @@ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|||
|
||||
[[package]]
|
||||
name = "lychee"
|
||||
version = "0.19.0"
|
||||
version = "0.19.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert-json-diff",
|
||||
|
|
@ -2538,7 +2538,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lychee-lib"
|
||||
version = "0.19.0"
|
||||
version = "0.19.1"
|
||||
dependencies = [
|
||||
"async-stream",
|
||||
"async-trait",
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ members = ["lychee-bin", "lychee-lib", "examples/*", "benches"]
|
|||
resolver = "2"
|
||||
|
||||
[workspace.package]
|
||||
version = "0.19.0"
|
||||
version = "0.19.1"
|
||||
|
||||
[profile.release]
|
||||
debug = true
|
||||
|
|
|
|||
|
|
@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.19.1](https://github.com/lycheeverse/lychee/compare/lychee-v0.19.0...lychee-v0.19.1) - 2025-06-16
|
||||
|
||||
### Other
|
||||
|
||||
- Don't echo potentially sensitive header data ([#1728](https://github.com/lycheeverse/lychee/pull/1728))
|
||||
- Update changelog
|
||||
|
||||
## [0.19.0](https://github.com/lycheeverse/lychee/compare/lychee-v0.18.1...lychee-v0.19.0) - 2025-06-11
|
||||
|
||||
Most notably with this release the deprecated `--exclude-mail` flag was removed and the behavior of the `--accept` flag was updated. Previously, status codes such as `200 OK` were always accepted. Now they are only accepted by default. This means providing the argument `--accept 201` now rejects status code `200 OK`.
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ rust-version = "1.85.0"
|
|||
[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.19.0", default-features = false }
|
||||
lychee-lib = { path = "../lychee-lib", version = "0.19.1", default-features = false }
|
||||
|
||||
anyhow = "1.0.98"
|
||||
assert-json-diff = "2.0.2"
|
||||
|
|
|
|||
|
|
@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.19.1](https://github.com/lycheeverse/lychee/compare/lychee-lib-v0.19.0...lychee-lib-v0.19.1) - 2025-06-16
|
||||
|
||||
### Fixed
|
||||
|
||||
- skip the fragment check if the uri doesn't contain fragment ([#1730](https://github.com/lycheeverse/lychee/pull/1730))
|
||||
|
||||
### Other
|
||||
|
||||
- Update changelog
|
||||
|
||||
## [0.19.0](https://github.com/lycheeverse/lychee/compare/lychee-lib-v0.18.1...lychee-lib-v0.19.0) - 2025-06-11
|
||||
|
||||
### Added
|
||||
|
|
|
|||
Loading…
Reference in a new issue