Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# Version 0.17.0 (2025-11-06)

## Breaking changes

Loopback interfaces are enabled by default now. The main reason is that some user reported a failure of publishing services locally. I think this change probably only impacts very few.

## New features

A couple of new APIs are added for `ServiceInfo`: `set_interfaces` and `set_link_local_only` based on some real world use cases.

## All changes

* `6752eaf 2025-11-04` feat: service registration with granular iface/ip conditions (#398) (twizansk)
* `7293e7c 2025-11-02` Enable loopback interfaces by default (#397) (keepsimple1)
* `505bd71 2025-11-02` Fix clippy for tests and remove unnecessary tests (#403) (keepsimple1)

# Version 0.16.0 (2025-10-29)

A bugfix release. But we also bumped up rustc MSRV to 1.71.0, hence bumping our own minor version.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mdns-sd"
version = "0.16.0"
version = "0.17.0"
authors = ["keepsimple <keepsimple@gmail.com>"]
edition = "2018"
rust-version = "1.71.0"
Expand Down
2 changes: 1 addition & 1 deletion src/service_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ impl ServiceInfo {

/// Set the supported interfaces for this service.
///
/// The service will be advertised on the provided interfaces. When ips are auto-detected
/// The service will be advertised on the provided interfaces only. When ips are auto-detected
/// (via 'enable_addr_auto') only addresses on these interfaces will be considered.
pub fn set_interfaces(&mut self, intfs: Vec<IfKind>) {
self.supported_intfs = intfs;
Expand Down