-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prepare Tokio v1.8.0 #3912
Prepare Tokio v1.8.0 #3912
Conversation
Note that the newly added |
The fix in #3913 should be merged before making this release. |
tokio/CHANGELOG.md
Outdated
- io: add `get_{ref,mut}` methods to `AsyncFdReadyGuard` and `AsyncFdReadyMutGuard` ([#3807]) | ||
- io: efficient implementation of vectored writes for `BufWriter` ([#3163]) | ||
- net: add ready/try methods to `NamedPipe{Client,Server}` ([#3866], [#3899]) | ||
- rt: add `tokio::task::Builder` ([#3881]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is an unstable API, so it will not be available to most users. We probably either want to split it out to a separate section or just not include it in the changelog.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, i think an "Unstable APIs" section might be worth adding?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will approve anyway (changelogs can be tweaked after the fact), but I commented on tokio::task::Builder
.
1.8.0 (July 2, 2021)
Added
get_{ref,mut}
methods toAsyncFdReadyGuard
andAsyncFdReadyMutGuard
(#3807)BufWriter
(#3163)NamedPipe{Client,Server}
(#3866, #3899)tokio::task::Builder
(#3881)watch::Receiver::borrow_and_update
(#3813)From<T>
forOnceCell<T>
(#3877)Fixed
UnixStream
(#3898)Documented