Signed-off-by: John Nunley <dev@notgull.net>
This commit is contained in:
John Nunley 2023-12-19 08:40:55 -08:00 committed by GitHub
parent c2d1ccb7ae
commit ea0f6016ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
# Version 4.0.1
- Fix a use-after-move error after an `EventListener` is assigned to listen to
another `Event`. (#101)
# Version 4.0.0
- **Breaking:** Fix a footgun in the `EventListener` type. `EventListener::new()`

View File

@ -3,7 +3,7 @@ name = "event-listener"
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v4.x.y" git tag
version = "4.0.0"
version = "4.0.1"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2021"
rust-version = "1.61"