Bump to v1.1.0

This commit is contained in:
Stjepan Glavina 2020-05-25 00:34:54 +02:00
parent 7f4821c52e
commit 14be780787
2 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,10 @@
# Version 1.1.0
- Add `EventListener::notify()`.
# Version 1.0.1
- Reduce the complexity of `notify_all()` from O(n^2) to O(n).
- Reduce the complexity of `notify_all()` from O(n) to amortized O(1).
- Fix a bug where entries were notified in wrong order.
- Add tests.

View File

@ -1,6 +1,6 @@
[package]
name = "event-listener"
version = "1.0.1"
version = "1.1.0"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
description = "Notify async tasks or threads"