From e5f23aeb47134b07634547c97c717d188adb97dc Mon Sep 17 00:00:00 2001 From: Han Xu Date: Sun, 15 Dec 2024 19:45:16 -0800 Subject: [PATCH] bump up version to 0.13.0 --- CHANGELOG.md | 17 +++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78f4f5c..411ec87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# Version 0.13.0 (2024-12-15) + +There are no breaking changes in API. Bump the minor version due to the change of rustc version to Rust 1.70.0. + +## Highlights + +* Use `mio` instead of `polling` to poll sockets. +* New API `set_multicast_loop_v4` and `set_multicast_loop_v6` of `ServiceDaemon`. +* All logging are updated to be `debug` or `trace` levels only. + +## All changes + +* 489ef5a test: fix a flaky test (#283) (keepsimple1) +* 1ddae63 feat: new API to set multicast loop for ServiceDaemon (#281) (keepsimple1) +* fcd31f3 dependency: use mio to replace polling (#280) (keepsimple1) +* 99483b7 reduce logging levels (#277) (keepsimple1) + # Version 0.12.0 (2024-11-24) There are no breaking changes in API. Bump the minor version due to new features and the change of rustc version. diff --git a/Cargo.toml b/Cargo.toml index 215c58e..a9ee23a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdns-sd" -version = "0.12.0" +version = "0.13.0" authors = ["keepsimple "] edition = "2018" rust-version = "1.70.0"