smol/CHANGELOG.md

56 lines
1.1 KiB
Markdown
Raw Normal View History

2020-05-22 20:23:52 +00:00
# Version 0.1.10
- Fix incorrectly reported error kind when connecting fails.
2020-05-22 14:05:36 +00:00
# Version 0.1.9
- Switch to oneshot-style notifications on all platforms.
- Fix a bug that caused 100% CPU usage on Windows.
- Deprecate `Async::with()` and `Async::with_mut()`.
- Add `Async::read_with()`, `Async::read_with_mut()`,
`Async::write_with()`, and `Async::write_with_mut()`.
- Fix a bug where eventfd was not closed.
2020-05-18 09:33:11 +00:00
# Version 0.1.8
- Revert the use of `blocking` crate.
2020-05-17 21:56:22 +00:00
# Version 0.1.7
- Update `blocking` to `0.4.2`.
- Make `Task::blocking()` work without `run()`.
2020-05-17 15:26:30 +00:00
# Version 0.1.6
- Fix a deadlock by always re-registering `IoEvent`.
2020-05-14 18:32:47 +00:00
# Version 0.1.5
- Use `blocking` crate for blocking I/O.
- Fix a re-registration bug when in oneshot mode.
2020-05-15 12:56:44 +00:00
- Use eventfd on Linux.
2020-05-14 18:32:47 +00:00
- More tests.
- Fix timeout rounding error in epoll/wepoll.
2020-04-28 14:08:47 +00:00
# Version 0.1.4
- Fix a bug in UDS async connect
2020-04-28 13:29:30 +00:00
# Version 0.1.3
- Fix the writability check in async connect
- More comments and documentation
- Better security advice on certificates
2020-04-27 14:04:51 +00:00
# Version 0.1.2
- Improved internal docs, fixed typos, and more comments
2020-04-27 09:58:41 +00:00
# Version 0.1.1
- Upgrade dependencies
2020-04-26 17:44:48 +00:00
# Version 0.1.0
2020-04-26 12:14:51 +00:00
2020-04-26 17:44:48 +00:00
- Initial release