From c70959b934c16c796541aab5f0f1a0445c8d4f17 Mon Sep 17 00:00:00 2001 From: Matthias Endler Date: Sat, 12 Oct 2024 02:23:53 +0200 Subject: [PATCH] chore: release --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- lychee-bin/CHANGELOG.md | 19 +++++++++++++++++++ lychee-bin/Cargo.toml | 4 ++-- lychee-lib/CHANGELOG.md | 21 +++++++++++++++++++++ lychee-lib/Cargo.toml | 2 +- 6 files changed, 46 insertions(+), 6 deletions(-) create mode 100644 lychee-bin/CHANGELOG.md create mode 100644 lychee-lib/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index 5b017be20a..7b7c15df74 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2500,7 +2500,7 @@ dependencies = [ [[package]] name = "lychee" -version = "0.16.1" +version = "0.16.2" dependencies = [ "anyhow", "assert-json-diff", @@ -2545,7 +2545,7 @@ dependencies = [ [[package]] name = "lychee-lib" -version = "0.16.1" +version = "0.16.2" dependencies = [ "async-stream", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 3dffd659da..8fb8afa76e 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.16.2" [profile.release] debug = true diff --git a/lychee-bin/CHANGELOG.md b/lychee-bin/CHANGELOG.md new file mode 100644 index 0000000000..c18421a298 --- /dev/null +++ b/lychee-bin/CHANGELOG.md @@ -0,0 +1,19 @@ +# 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.16.2](https://github.com/lycheeverse/lychee/compare/lychee-v0.16.1...lychee-v0.16.2) - 2024-10-12 + +### Fixed + +- Remove tokio console subscriber ([#1524](https://github.com/lycheeverse/lychee/pull/1524)) + +### Other + +- 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 f7b6952076..f82f2b7847 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.16.2", 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..c88d9338bc --- /dev/null +++ b/lychee-lib/CHANGELOG.md @@ -0,0 +1,21 @@ +# 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.16.2](https://github.com/lycheeverse/lychee/compare/lychee-lib-v0.16.1...lychee-lib-v0.16.2) - 2024-10-12 + +### Added + +- Add tests for `dns-prefetch` ([#1522](https://github.com/lycheeverse/lychee/pull/1522)) + +### Other + +- 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 4a77916801..cd27c6b7cc 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"]