From 7a89547fd757ce20f075309aced4bf243c924dc0 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Sat, 11 Oct 2025 12:53:28 +0200 Subject: [PATCH] Release v0.6.1 --- CHANGELOG.md | 18 ++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f3ec13e..a8a1f256 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +# 0.6.1 + +## Added + +* Added support for Windows Registered I/O (RIO) + (https://github.com/rust-lang/socket2/pull/604). +* Added support for `TCP_NOTSENT_LOWAT` on Linux via `Socket::(set_)tcp_notsent_lowat` + (https://github.com/rust-lang/socket2/pull/611). +* Added support for `SO_BUSY_POLL` on Linux via `Socket::set_busy_poll` + (https://github.com/rust-lang/socket2/pull/607). +* `SockFilter::new` is now a const function + (https://github.com/rust-lang/socket2/pull/609). + +## Changed + +* Updated the windows-sys dependency to version 0.60 + (https://github.com/rust-lang/socket2/pull/605). + # 0.6.0 ## Breaking changes diff --git a/Cargo.toml b/Cargo.toml index da9e62f6..9b6195ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "socket2" -version = "0.6.0" +version = "0.6.1" authors = [ "Alex Crichton ", "Thomas de Zeeuw "