From d181362460f0814b2fa30988d9537509a41ce7a7 Mon Sep 17 00:00:00 2001 From: Matthew Jackson <1085847+MattJackson@users.noreply.github.com> Date: Sun, 7 Jun 2026 22:42:09 -0700 Subject: [PATCH] libfreemkv 0.31.3: use RFC 5737 doc address in network URL test fixture --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- src/mux/mod.rs | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02f606f..4690c05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.31.3 (2026-06-08) + +Test fixture hygiene — no runtime changes. Replaced a private-range example +address in a `network://` URL test with an RFC 5737 documentation address so +the public-repo leak-guard stays green. + ## 0.31.2 (2026-06-08) Test-hardening release — no runtime changes. Adds a comprehensive, diff --git a/Cargo.toml b/Cargo.toml index e70577d..f891d7b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfreemkv" -version = "0.31.2" +version = "0.31.3" edition = "2024" rust-version = "1.86" license = "AGPL-3.0-only" diff --git a/src/mux/mod.rs b/src/mux/mod.rs index 26ecd1c..d1207e9 100644 --- a/src/mux/mod.rs +++ b/src/mux/mod.rs @@ -152,8 +152,8 @@ mod tests { fn path_str_returns_address_for_network() { // network:// path_str is the host:port address verbatim. assert_eq!( - parse_url("network://192.168.1.1:9000").path_str(), - "192.168.1.1:9000" + parse_url("network://203.0.113.5:9000").path_str(), + "203.0.113.5:9000" ); }