From 45ebe3b904e85f5047a35dab2ce3a48385da3b39 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Mon, 25 Sep 2023 09:42:41 -0700 Subject: [PATCH] v3.1.0 Signed-off-by: John Nunley --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 51306d7..448089d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 3.1.0 + +- Add an `Event::new()` constructor to simplify creating `Event`s. (#149) + # Version 3.0.0 - Replace `libc` in all backends with the `rustix` crate (#108). diff --git a/Cargo.toml b/Cargo.toml index c965780..93a1939 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.0.0" +version = "3.1.0" authors = ["Stjepan Glavina ", "John Nunley "] edition = "2018" rust-version = "1.63"