From 3592972d6462ceb6081c3945cc43121bc3ce2039 Mon Sep 17 00:00:00 2001 From: Matthias Endler Date: Mon, 16 Jun 2025 14:56:32 +0300 Subject: [PATCH] chore: release v0.19.1 (#1726) --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- lychee-bin/CHANGELOG.md | 7 +++++++ lychee-bin/Cargo.toml | 2 +- lychee-lib/CHANGELOG.md | 10 ++++++++++ 5 files changed, 21 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e43d4d1..85f8880 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index dccfdbe..78993d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 diff --git a/lychee-bin/CHANGELOG.md b/lychee-bin/CHANGELOG.md index b221e3c..cb34ff2 100644 --- a/lychee-bin/CHANGELOG.md +++ b/lychee-bin/CHANGELOG.md @@ -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`. diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index ba353da..e68ac06 100644 --- a/lychee-bin/Cargo.toml +++ b/lychee-bin/Cargo.toml @@ -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" diff --git a/lychee-lib/CHANGELOG.md b/lychee-lib/CHANGELOG.md index 0ebff73..bbab21f 100644 --- a/lychee-lib/CHANGELOG.md +++ b/lychee-lib/CHANGELOG.md @@ -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