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..84ecb4722d --- /dev/null +++ b/lychee-bin/CHANGELOG.md @@ -0,0 +1,22 @@ +# 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-14 + +### Fixed + +- Remove tokio console subscriber ([#1524](https://github.com/lycheeverse/lychee/pull/1524)) + +### 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)) +- 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 28379fad53..b8e0205152 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" @@ -99,4 +99,4 @@ required-features = ["check_example_domains"] [package.metadata.binstall] pkg-url = "{ repo }/releases/download/v{ version }/{ name }-v{ version }-{ target }{ archive-suffix }" bin-dir = "{ bin }{ binary-ext }" -pkg-fmt = "tgz" \ No newline at end of file +pkg-fmt = "tgz" diff --git a/lychee-lib/CHANGELOG.md b/lychee-lib/CHANGELOG.md new file mode 100644 index 0000000000..254e16165c --- /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-14 + +### 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"]