From d9a65fdd73c133724a6fc15a1ecc315c0965931b Mon Sep 17 00:00:00 2001 From: John Nunley Date: Mon, 2 Oct 2023 07:37:32 -0700 Subject: [PATCH] v3.2.0 Signed-off-by: John Nunley --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 448089d..cfbd847 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# Version 3.2.0 + +- The `kqueue` backend previously allowed the following operations that other backends forbid. Now these operations result in an error: (#153) + - Inserting a source that was already inserted. + - Modifying/deleting a source that was not already inserted. +- Add support for Haiku OS. (#154) + # Version 3.1.0 - Add an `Event::new()` constructor to simplify creating `Event`s. (#149) diff --git a/Cargo.toml b/Cargo.toml index 93a1939..3189f0b 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.1.0" +version = "3.2.0" authors = ["Stjepan Glavina ", "John Nunley "] edition = "2018" rust-version = "1.63"