From 9d196041e1b275183719785e953e41ff4a91a441 Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Fri, 23 Jan 2026 14:41:55 +0100 Subject: [PATCH] Release v0.6.2 --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90446ce5..26d5fac2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.6.2 + +* `MsgHdr` and `MsgHdrMut` are marked as transparent meaning both have the same + layout as `msghdr` on Unix and `WSAMSG` on Windows + (https://github.com/rust-lang/socket2/pull/635). +* Don't set `SO_NOSIGPIPE` when accepting sockets, this is inherited from the + parent socket (https://github.com/rust-lang/socket2/pull/632). +* Fixes `Socket::tcp_notsent_lowat` by using the correct argument type + (https://github.com/rust-lang/socket2/pull/622). + # 0.6.1 ## Added diff --git a/Cargo.toml b/Cargo.toml index 9b6195ea..68238cd7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "socket2" -version = "0.6.1" +version = "0.6.2" authors = [ "Alex Crichton ", "Thomas de Zeeuw "