async-executor/CHANGELOG.md

49 lines
801 B
Markdown
Raw Normal View History

2022-11-09 02:34:15 +00:00
# Version 1.5.0
- Remove the dependency on the `once_cell` crate to restore the MSRV. (#29)
- Update `concurrent-queue` to v2.
2021-04-24 08:56:59 +00:00
# Version 1.4.1
- Remove dependency on deprecated `vec-arena`. (#23)
2020-11-10 14:56:55 +00:00
# Version 1.4.0
- Add `Executor::is_empty()` and `LocalExecutor::is_empty()`.
2020-09-20 14:32:51 +00:00
# Version 1.3.0
- Parametrize executors over a lifetime to allow spawning non-`static` futures.
2020-09-20 00:40:01 +00:00
# Version 1.2.0
- Update `async-task` to v4.
2020-09-14 13:51:41 +00:00
# Version 1.1.1
- Replace `AtomicU64` with `AtomicUsize`.
2020-09-10 21:29:05 +00:00
# Version 1.1.0
- Use atomics to make `Executor::run()` and `Executor::tick()` futures `Send + Sync`.
2020-09-07 14:03:27 +00:00
# Version 1.0.0
- Stabilize.
2020-08-29 18:07:00 +00:00
# Version 0.2.1
- Add `try_tick()` and `tick()` methods.
2020-08-26 21:47:41 +00:00
# Version 0.2.0
- Redesign the whole API.
2020-07-23 16:47:28 +00:00
# Version 0.1.2
- Add the `Spawner` API.
2020-07-23 10:03:03 +00:00
# Version 0.1.1
- Initial version