diff --git a/CHANGELOG.md b/CHANGELOG.md index 3689860..c2dccf2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # swyh-rs Changelog -- 1.11.3 (unreleased) +- 1.11.3 (Aug 30 2024 dheijl) + - some tweaks: + - avoid unnecessary allocations + - rewrite how samples are serialized in the streaming buffer, it's safer, cleaner and should be faster too - 1.11.2 (Aug 18 2024 dheijl) - clean up log initializing mess diff --git a/Cargo.lock b/Cargo.lock index 3adf2c9..8aa89cd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -585,9 +585,9 @@ dependencies = [ [[package]] name = "local-ip-address" -version = "0.6.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "136ef34e18462b17bf39a7826f8f3bbc223341f8e83822beb8b77db9a3d49696" +checksum = "b435d7dd476416a905f9634dff8c330cee8d3168fdd1fbd472a17d1a75c00c3e" dependencies = [ "libc", "neli", diff --git a/Cargo.toml b/Cargo.toml index 0fb3987..23ba5b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,7 +50,7 @@ hashbrown = "0.14.5" htmlescape = "0.3.1" if-addrs = "0.13.3" lexopt = "0.3.0" -local-ip-address = { version = "0.6.1", optional = true } +local-ip-address = { version = "0.6.2", optional = true } log = { version = "0.4.22", features = [ "max_level_trace", "release_max_level_debug",