From edc50ec868a604908654523e21884e657a5bbc6c Mon Sep 17 00:00:00 2001 From: John Nunley Date: Wed, 20 Sep 2023 08:26:13 -0700 Subject: [PATCH] v0.3.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 510e3bf..eedc7b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 0.3.0 + +- **Breaking:** Remove an unneeded lifetime from the public API. (#6) + # Version 0.2.0 - **Breaking:** Add support for WASM targets by disabling `wait()` on them. (#3) diff --git a/Cargo.toml b/Cargo.toml index 6432cef..a5badfe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "event-listener-strategy" # Make sure to update CHANGELOG.md when the version is bumped here. -version = "0.2.0" +version = "0.3.0" edition = "2018" authors = ["John Nunley "] rust-version = "1.59"