Skip to content

Commit

Permalink
bump up version to 0.13.2 (#298)
Browse files Browse the repository at this point in the history
  • Loading branch information
keepsimple1 authored Feb 3, 2025
1 parent a2814fd commit 6f14f1f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
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.13.1"
version = "0.13.2"
authors = ["keepsimple <[email protected]>"]
edition = "2018"
rust-version = "1.70.0"
Expand Down
4 changes: 2 additions & 2 deletions src/service_daemon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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: <https://learn.microsoft.com/en-us/windows/win32/winsock/ip-multicast-2>
///
/// "The Winsock version of the IP_MULTICAST_LOOP option is semantically different than
/// the UNIX version of the IP_MULTICAST_LOOP option:
Expand All @@ -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: <https://learn.microsoft.com/en-us/windows/win32/winsock/ip-multicast-2>
///
/// "The Winsock version of the IP_MULTICAST_LOOP option is semantically different than
/// the UNIX version of the IP_MULTICAST_LOOP option:
Expand Down

0 comments on commit 6f14f1f

Please sign in to comment.