From d9394dfd3dae62ee00c4488fdeb858b41ed4409b Mon Sep 17 00:00:00 2001 From: Matthias Endler Date: Fri, 18 Oct 2024 16:32:58 +0200 Subject: [PATCH] chore: release v0.17.0 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- lychee-bin/CHANGELOG.md | 23 +++++++++++++++++++++++ lychee-bin/Cargo.toml | 2 +- lychee-lib/CHANGELOG.md | 24 ++++++++++++++++++++++++ lychee-lib/Cargo.toml | 2 +- 6 files changed, 52 insertions(+), 5 deletions(-) create mode 100644 lychee-bin/CHANGELOG.md create mode 100644 lychee-lib/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index 1f5135844d..dbb0602179 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2500,7 +2500,7 @@ dependencies = [ [[package]] name = "lychee" -version = "0.16.1" +version = "0.17.0" dependencies = [ "anyhow", "assert-json-diff", @@ -2545,7 +2545,7 @@ dependencies = [ [[package]] name = "lychee-lib" -version = "0.16.1" +version = "0.17.0" dependencies = [ "async-stream", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 3dffd659da..7bb2d35069 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["lychee-bin", "lychee-lib", "examples/*", "benches"] resolver = "2" [workspace.package] -version = "0.16.1" +version = "0.17.0" [profile.release] debug = true diff --git a/lychee-bin/CHANGELOG.md b/lychee-bin/CHANGELOG.md new file mode 100644 index 0000000000..c4afe82fbb --- /dev/null +++ b/lychee-bin/CHANGELOG.md @@ -0,0 +1,23 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.17.0](https://github.com/lycheeverse/lychee/compare/lychee-v0.16.1...lychee-v0.17.0) - 2024-10-18 + +### Fixed + +- Remove tokio console subscriber ([#1524](https://github.com/lycheeverse/lychee/pull/1524)) + +### Other + +- Update `pkg-url` of cargo binstall ([#1532](https://github.com/lycheeverse/lychee/pull/1532)) +- Bump the dependencies group with 3 updates ([#1530](https://github.com/lycheeverse/lychee/pull/1530)) +- Allow excluding cache based on status code ([#1403](https://github.com/lycheeverse/lychee/pull/1403)) +- Respect timeout when retrieving archived link ([#1526](https://github.com/lycheeverse/lychee/pull/1526)) +- Disable Wayback machine tests +- Bump the dependencies group with 6 updates ([#1516](https://github.com/lycheeverse/lychee/pull/1516)) diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index 215b112bab..c28326c689 100644 --- a/lychee-bin/Cargo.toml +++ b/lychee-bin/Cargo.toml @@ -14,7 +14,7 @@ version.workspace = true [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.16.1", default-features = false } +lychee-lib = { path = "../lychee-lib", version = "0.17.0", default-features = false } anyhow = "1.0.89" assert-json-diff = "2.0.2" diff --git a/lychee-lib/CHANGELOG.md b/lychee-lib/CHANGELOG.md new file mode 100644 index 0000000000..401add6111 --- /dev/null +++ b/lychee-lib/CHANGELOG.md @@ -0,0 +1,24 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.17.0](https://github.com/lycheeverse/lychee/compare/lychee-lib-v0.16.1...lychee-lib-v0.17.0) - 2024-10-18 + +### Added + +- Add tests for `dns-prefetch` ([#1522](https://github.com/lycheeverse/lychee/pull/1522)) + +### Other + +- Bump the dependencies group with 3 updates ([#1530](https://github.com/lycheeverse/lychee/pull/1530)) +- Allow excluding cache based on status code ([#1403](https://github.com/lycheeverse/lychee/pull/1403)) +- Ignore textContent links in html nodes ([#1528](https://github.com/lycheeverse/lychee/pull/1528)) +- Exclude `rel=dns-prefetch` links ([#1520](https://github.com/lycheeverse/lychee/pull/1520)) +- Improve docs for fragment checker +- Don't check preconnect links ([#1187](https://github.com/lycheeverse/lychee/pull/1187)) +- Bump the dependencies group with 6 updates ([#1516](https://github.com/lycheeverse/lychee/pull/1516)) diff --git a/lychee-lib/Cargo.toml b/lychee-lib/Cargo.toml index bea8c731d5..37544e3270 100644 --- a/lychee-lib/Cargo.toml +++ b/lychee-lib/Cargo.toml @@ -92,4 +92,4 @@ vendored-openssl = ["openssl-sys/vendored"] # See https://users.rust-lang.org/t/36630 check_example_domains = [] -default = ["native-tls", "email-check"] \ No newline at end of file +default = ["native-tls", "email-check"]