diff --git a/CHANGELOG.md b/CHANGELOG.md index 422fb27..b9d7730 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# Version 0.19.1 (2026-04-19) + +This is a bugfix release. + +## Bug fixes + +- When responding to a query, pick a source IP that matches the querier's subnet, so responses are reachable on multi-homed hosts. (#460, commit `d210372`) +- Validate TXT property length in the `ServiceInfo` constructor, catching oversized properties at registration time instead of at send time. (#458, commit `cc81eec`) + +## All changes + +* `d210372 2026-04-18` fix: use a source IP matching the querier's subnet when responding (#460) (keepsimple1) +* `cc81eec 2026-04-12` fix: check TXT property length in ServiceInfo constructor (#458) (keepsimple1) + # Version 0.19.0 (2026-04-04) ## Breaking changes diff --git a/Cargo.toml b/Cargo.toml index 16c8ce5..80ee1d8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdns-sd" -version = "0.19.0" +version = "0.19.1" authors = ["keepsimple "] edition = "2018" rust-version = "1.71.0"