diff --git a/CHANGELOG.md b/CHANGELOG.md index 250a162f2..7dbd13451 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +# 0.8.3 + +## Changed + +* Replace `winapi` dependency with `windows-sys`. + (https://github.com/tokio-rs/mio/pull/1556). +* Future proofed the kevent ABI for FreeBSD + (https://github.com/tokio-rs/mio/pull/1572). + +## Fixed + +* Improved support for Redox, making it possible to run on stable Rust + (https://github.com/tokio-rs/mio/pull/1555). +* Don't ignore EAGAIN in UDS connect call + (https://github.com/tokio-rs/mio/pull/)1564. +* Documentation of `TcpStream::connect` + (https://github.com/tokio-rs/mio/pull/1565). + # 0.8.2 ## Added diff --git a/Cargo.toml b/Cargo.toml index da2a0d1e3..a1eca0491 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ name = "mio" # When releasing to crates.io: # - Update CHANGELOG.md. # - Create git tag -version = "0.8.2" +version = "0.8.3" license = "MIT" authors = [ "Carl Lerche ",