libfreemkv 0.31.3: use RFC 5737 doc address in network URL test fixture

This commit is contained in:
Matthew Jackson
2026-06-07 22:42:09 -07:00
parent 8000bae177
commit d181362460
3 changed files with 9 additions and 3 deletions
+6
View File
@@ -1,5 +1,11 @@
# Changelog # 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) ## 0.31.2 (2026-06-08)
Test-hardening release — no runtime changes. Adds a comprehensive, Test-hardening release — no runtime changes. Adds a comprehensive,
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "libfreemkv" name = "libfreemkv"
version = "0.31.2" version = "0.31.3"
edition = "2024" edition = "2024"
rust-version = "1.86" rust-version = "1.86"
license = "AGPL-3.0-only" license = "AGPL-3.0-only"
+2 -2
View File
@@ -152,8 +152,8 @@ mod tests {
fn path_str_returns_address_for_network() { fn path_str_returns_address_for_network() {
// network:// path_str is the host:port address verbatim. // network:// path_str is the host:port address verbatim.
assert_eq!( assert_eq!(
parse_url("network://192.168.1.1:9000").path_str(), parse_url("network://203.0.113.5:9000").path_str(),
"192.168.1.1:9000" "203.0.113.5:9000"
); );
} }