Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "socket2"
version = "0.6.0"
version = "0.6.1"
authors = [
"Alex Crichton <alex@alexcrichton.com>",
"Thomas de Zeeuw <thomasdezeeuw@gmail.com>"
Expand Down