|
| 1 | +# 1.12.0 (September 21, 2021) |
| 2 | + |
| 3 | +### Fixed |
| 4 | + |
| 5 | +- mpsc: ensure `try_reserve` error is consistent with `try_send` ([#4119]) |
| 6 | +- mpsc: use `spin_loop_hint` instead of `yield_now` ([#4115]) |
| 7 | +- sync: make `SendError` field public ([#4097]) |
| 8 | + |
| 9 | +### Added |
| 10 | + |
| 11 | +- io: add POSIX AIO on FreeBSD ([#4054]) |
| 12 | +- io: add convenience method `AsyncSeekExt::rewind` ([#4107]) |
| 13 | +- runtime: add tracing span for `block_on` futures ([#4094]) |
| 14 | +- runtime: callback when a worker parks and unparks ([#4070]) |
| 15 | +- sync: implement `try_recv` for mpsc channels ([#4113]) |
| 16 | + |
| 17 | +### Changed |
| 18 | + |
| 19 | +- macros: run runtime inside `LocalSet` when using macro ([#4027]) |
| 20 | + |
| 21 | +### Documented |
| 22 | + |
| 23 | +- docs: clarify CPU-bound tasks on Tokio ([#4105]) |
| 24 | +- mpsc: document spurious failures on `poll_recv` ([#4117]) |
| 25 | +- mpsc: document that `PollSender` impls `Sink` ([#4110]) |
| 26 | +- task: document non-guarantees of `yield_now` ([#4091]) |
| 27 | +- time: document paused time details better ([#4061], [#4103]) |
| 28 | + |
| 29 | +[#4027]: https://github.com/tokio-rs/tokio/pull/4027 |
| 30 | +[#4054]: https://github.com/tokio-rs/tokio/pull/4054 |
| 31 | +[#4061]: https://github.com/tokio-rs/tokio/pull/4061 |
| 32 | +[#4070]: https://github.com/tokio-rs/tokio/pull/4070 |
| 33 | +[#4091]: https://github.com/tokio-rs/tokio/pull/4091 |
| 34 | +[#4094]: https://github.com/tokio-rs/tokio/pull/4094 |
| 35 | +[#4097]: https://github.com/tokio-rs/tokio/pull/4097 |
| 36 | +[#4103]: https://github.com/tokio-rs/tokio/pull/4103 |
| 37 | +[#4105]: https://github.com/tokio-rs/tokio/pull/4105 |
| 38 | +[#4107]: https://github.com/tokio-rs/tokio/pull/4107 |
| 39 | +[#4110]: https://github.com/tokio-rs/tokio/pull/4110 |
| 40 | +[#4113]: https://github.com/tokio-rs/tokio/pull/4113 |
| 41 | +[#4115]: https://github.com/tokio-rs/tokio/pull/4115 |
| 42 | +[#4117]: https://github.com/tokio-rs/tokio/pull/4117 |
| 43 | +[#4119]: https://github.com/tokio-rs/tokio/pull/4119 |
| 44 | + |
1 | 45 | # 1.11.0 (August 31, 2021)
|
2 | 46 |
|
3 | 47 | ### Fixed
|
|
0 commit comments