event-listener/CHANGELOG.md

18 lines
311 B
Markdown
Raw Normal View History

2020-05-25 09:47:24 +00:00
# Version 1.1.1
- Fix a bug in `EventListener::wait_timeout()`.
2020-05-24 22:34:54 +00:00
# Version 1.1.0
- Add `EventListener::notify()`.
2020-05-20 19:17:36 +00:00
# Version 1.0.1
2020-05-16 17:44:50 +00:00
2020-05-24 22:34:54 +00:00
- Reduce the complexity of `notify_all()` from O(n) to amortized O(1).
2020-05-20 19:17:36 +00:00
- Fix a bug where entries were notified in wrong order.
- Add tests.
2020-05-16 17:44:50 +00:00
2020-05-20 19:17:36 +00:00
# Version 1.0.0
2020-05-16 17:44:50 +00:00
2020-05-20 19:17:36 +00:00
- Initial version.