From 8087787ab2e3ff9dd1b53d713adb6f7526927f54 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Sat, 28 Oct 2023 18:54:47 -0700 Subject: [PATCH] v3.3.0 Signed-off-by: John Nunley --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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"