diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ca2c3c..7ee265b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# Version 0.13.2 (2025-02-02) + +This is a bugfix release. + +## All changes + +* 4288190 check any match for address records in conflict handler (#294) (keepsimple1) +* b51f67d unit test: fix a timing issue (#292) (keepsimple1) +* 7afed98 bugfix: check data len for NSEC record (#291) (keepsimple1) + # Version 0.13.1 (2024-12-16) This is a bugfix release. Fixed a bug where upper case service names failed to publish. diff --git a/Cargo.toml b/Cargo.toml index f25717a..e8a59b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdns-sd" -version = "0.13.1" +version = "0.13.2" authors = ["keepsimple "] edition = "2018" rust-version = "1.70.0" diff --git a/src/service_daemon.rs b/src/service_daemon.rs index ff21b52..7272644 100644 --- a/src/service_daemon.rs +++ b/src/service_daemon.rs @@ -408,7 +408,7 @@ impl ServiceDaemon { /// By default, multicast loop is enabled for IPv4. When disabled, a querier will not /// receive announcements from a responder on the same host. /// - /// Reference: https://learn.microsoft.com/en-us/windows/win32/winsock/ip-multicast-2 + /// Reference: /// /// "The Winsock version of the IP_MULTICAST_LOOP option is semantically different than /// the UNIX version of the IP_MULTICAST_LOOP option: @@ -427,7 +427,7 @@ impl ServiceDaemon { /// By default, multicast loop is enabled for IPv6. When disabled, a querier will not /// receive announcements from a responder on the same host. /// - /// Reference: https://learn.microsoft.com/en-us/windows/win32/winsock/ip-multicast-2 + /// Reference: /// /// "The Winsock version of the IP_MULTICAST_LOOP option is semantically different than /// the UNIX version of the IP_MULTICAST_LOOP option: