chore: release v0.18.1 (#1598)

This commit is contained in:
Matthias Endler 2025-02-11 15:47:55 +01:00 committed by GitHub
parent 7c4b1325cd
commit 2aa22f8b7a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 32 additions and 4 deletions

4
Cargo.lock generated
View file

@ -2454,7 +2454,7 @@ dependencies = [
[[package]]
name = "lychee"
version = "0.18.0"
version = "0.18.1"
dependencies = [
"anyhow",
"assert-json-diff",
@ -2501,7 +2501,7 @@ dependencies = [
[[package]]
name = "lychee-lib"
version = "0.18.0"
version = "0.18.1"
dependencies = [
"async-stream",
"async-trait",

View file

@ -3,7 +3,7 @@ members = ["lychee-bin", "lychee-lib", "examples/*", "benches"]
resolver = "2"
[workspace.package]
version = "0.18.0"
version = "0.18.1"
[profile.release]
debug = true

View file

@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.18.1](https://github.com/lycheeverse/lychee/compare/lychee-v0.18.0...lychee-v0.18.1) - 2025-02-06
### Fixed
- do not fail on empty # and #top fragments (#1609)
### Other
- Fix Porgressbar rendering Checkbox (Fixes [#1626](https://github.com/lycheeverse/lychee/pull/1626)) ([#1627](https://github.com/lycheeverse/lychee/pull/1627))
- Add Checkbox Formatting Option for Markdown Reports ([#1623](https://github.com/lycheeverse/lychee/pull/1623))
- Fix new clippy lints ([#1625](https://github.com/lycheeverse/lychee/pull/1625))
- Bump the dependencies group with 3 updates ([#1604](https://github.com/lycheeverse/lychee/pull/1604))
- Bump the dependencies group with 3 updates ([#1602](https://github.com/lycheeverse/lychee/pull/1602))
- Bump the dependencies group with 6 updates ([#1597](https://github.com/lycheeverse/lychee/pull/1597))
## [0.18.0](https://github.com/lycheeverse/lychee/compare/lychee-v0.17.0...lychee-v0.18.0) - 2024-12-18
### Other

View file

@ -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.18.0", default-features = false }
lychee-lib = { path = "../lychee-lib", version = "0.18.1", default-features = false }
anyhow = "1.0.95"
assert-json-diff = "2.0.2"

View file

@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.18.1](https://github.com/lycheeverse/lychee/compare/lychee-lib-v0.18.0...lychee-lib-v0.18.1) - 2025-02-06
### Fixed
- do not fail on empty # and #top fragments (#1609)
### Other
- Fix new clippy lints ([#1625](https://github.com/lycheeverse/lychee/pull/1625))
- Bump the dependencies group with 3 updates ([#1604](https://github.com/lycheeverse/lychee/pull/1604))
- Bump the dependencies group with 3 updates ([#1602](https://github.com/lycheeverse/lychee/pull/1602))
- Bump the dependencies group with 6 updates ([#1597](https://github.com/lycheeverse/lychee/pull/1597))
## [0.18.0](https://github.com/lycheeverse/lychee/compare/lychee-lib-v0.17.0...lychee-lib-v0.18.0) - 2024-12-18
### Other