-
-
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 0.2.23 release #3114
Merged
Merged
Prepare 0.2.23 release #3114
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Darksonn
added
C-maintenance
Category: PRs that clean code up or issues documenting cleanup.
A-tokio
Area: The main tokio crate
T-v0.2.x
Topic: tokio 0.2.x
labels
Nov 10, 2020
Do we need a tokio-macros release too?
|
Might need one? were there changes? |
It looks highly likely we need to push out a macros release first. |
tokio-macros release in #3127 |
We should include #3132 in this. |
carllerche
approved these changes
Nov 12, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-tokio
Area: The main tokio crate
C-maintenance
Category: PRs that clean code up or issues documenting cleanup.
T-v0.2.x
Topic: tokio 0.2.x
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
0.2.23 (November 11, 2020)
Fixes
unreachable_code
warning inselect!
(Fix select macro giving warning when branch's returns never #2678)shutdown_timeout
blocking for no reason #2649)Changes
std::io
(io: always reexport std::io types needed to implement async io traits #2606)parking_lot
dependency to 0.11.0 (Update optional parking_lot dependency to 0.11.0 #2676)read_to_end
andread_to_string
(io: rewrite read_to_end and read_to_string #2560)block_on
(Reset coop budget when blocking in block_on #2711)UnixListener::poll_accept
public (ChangeUnixListener::poll_accept
to public #2880)lazy_static
to1.4.0
(ci: minimal version check (v0.2.x) #3132)slab
to0.4.2
(ci: minimal version check (v0.2.x) #3132)Added
io::duplex()
as bidirectional reader/writer (tokio: introduce io::Duplex #2661)into_split
onUnixDatagram
(net: introduce split on UnixDatagram #2557)split
andinto_split
(Ensure that unix sockets have both split and into_split #2687)try_recv
/from
&try_send
/to
to UnixDatagram (Added try_recv & try_send to UnixDatagram #1677)UdpSocket::{try_send,try_send_to}
methods (net: AddUdpSocket::{try_send,try_send_to}
methods #1979)ToSocketAddrs
for(String, u16)
(implToSocketAddrs
for(String, u16)
#2724)ReaderStream
(Add ReaderStream #2714)Closes: #3111