From dcf07447b66740dd7e106a55c8814847213f846c Mon Sep 17 00:00:00 2001 From: keepsimple1 Date: Sun, 24 Mar 2024 17:04:15 -0700 Subject: [PATCH] bump up crate version to 0.10.5 (#188) added rust version badge --- CHANGELOG.md | 17 +++++++++++++++++ Cargo.toml | 2 +- README.md | 5 +---- 3 files changed, 19 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e47e4ca..03df5d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# Version 0.10.5 (2024-03-24) + +## Notes + +* Port 0 is now considered valid in ServiceInfo (#181) + +## Changes + +* reduce SearchStopped notification send error to warn (#178) +* refactoring: extract handle_poller_events() (#177) +* Do not consider port 0 as a missing info (#181) +* query TYPE_A and TYPE_AAAA via Command::Resolve (#185) +* bump socket2 version (#174) +* add NSEC record to debug resolve issue (#183) + +Welcome our new contributors: @hrzlgnm and @irvingoujAtDevolution ! Thanks! + # Version 0.10.4 (2024-02-10) This is a bug fix release. diff --git a/Cargo.toml b/Cargo.toml index f18312f..a4fab9b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdns-sd" -version = "0.10.4" +version = "0.10.5" authors = ["keepsimple "] edition = "2018" rust-version = "1.63.0" diff --git a/README.md b/README.md index 47a51d8..86b411b 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ [![Build](https://github.com/keepsimple1/mdns-sd/actions/workflows/build.yml/badge.svg)](https://github.com/keepsimple1/mdns-sd/actions) [![Cargo](https://img.shields.io/crates/v/mdns-sd.svg)](https://crates.io/crates/mdns-sd) [![docs.rs](https://img.shields.io/docsrs/mdns-sd)](https://docs.rs/mdns-sd/latest/mdns_sd/) +[![Rust version: 1.63+](https://img.shields.io/badge/rust%20version-1.63+-orange)](https://blog.rust-lang.org/2022/08/11/Rust-1.63.0.html) This is a small implementation of mDNS (Multicast DNS) based service discovery in safe Rust, with a small set of dependencies. Some highlights: @@ -30,10 +31,6 @@ This is still beta software. We focus on the common use cases at hand. And we te Currently this library has the following limitations: - Only support multicast, no unicast send/recv. -## Minimum Rust version - -Tested against Rust 1.61.0 - ## License Licensed under either of