From 6f14f1fa25351d33b402bcb8791878071044f2ac Mon Sep 17 00:00:00 2001 From: keepsimple1 Date: Sun, 2 Feb 2025 21:58:20 -0800 Subject: [PATCH] bump up version to 0.13.2 (#298) --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- src/service_daemon.rs | 4 ++-- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ca2c3c1..7ee265bf 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 f25717af..e8a59b2a 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 ff21b526..7272644c 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: