From 835bb0b50c160b81fa4fbd31d83bf1c7b8e0866e Mon Sep 17 00:00:00 2001 From: keepsimple1 Date: Sun, 1 Oct 2023 15:30:50 -0700 Subject: [PATCH] bump up version to 0.8.0 (#127) --- CHANGELOG.md | 13 +++++++++++++ Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d7bcdd8..5cb0609 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# Version 0.8.0 + +No breaking changes in API. This release brings two potential user-visible changes: + +* use UDP socket to signal the daemon for commands. (#125) + +This change reduces CPU utilization of the daemon thread as well as its latency to +the user commands. Internally it uses local UDP sockets to signal the daemon. + +* Added the link-local feature to if_addrs in Cargo.toml to enable link-local interfaces in Windows. (#126) + +This change makes link-local interfaces visible to users in Windows where they didn't show up previously. + # Version 0.7.5 * Revert the changes in v0.7.4 and support link-local addrs alongside routable addrs. (#122) diff --git a/Cargo.toml b/Cargo.toml index 48a9551..71af66b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdns-sd" -version = "0.7.5" +version = "0.8.0" authors = ["keepsimple "] edition = "2018" license = "Apache-2.0 OR MIT"