diff --git a/CHANGELOG.md b/CHANGELOG.md index cfbd847..7df561b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# Version 3.3.0 + +- Automatically restarts polling when `ErrorKind::Interrupted` is returned, rather than relying on the user to handle it. (#164) +- Fix bad link in documentation for `Poller::wait()`. (#163) + # Version 3.2.0 - The `kqueue` backend previously allowed the following operations that other backends forbid. Now these operations result in an error: (#153) diff --git a/Cargo.toml b/Cargo.toml index 1dc9022..c2c9790 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "polling" # When publishing a new version: # - Update CHANGELOG.md # - Create "v3.x.y" git tag -version = "3.2.0" +version = "3.3.0" authors = ["Stjepan Glavina ", "John Nunley "] edition = "2021" rust-version = "1.63"