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 "