File tree 3 files changed +18
-3
lines changed
3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change
1
+ # 0.3.3 (November 2, 2020)
2
+
3
+ Fixes a soundness hole by adding a missing ` Send ` bound to
4
+ ` Runtime::spawn_blocking() ` .
5
+
6
+ ### Fixed
7
+ - rt: include missing ` Send ` , fixing soundness hole (#3089 ).
8
+ - tracing: avoid huge trace span names (#3074 ).
9
+
10
+ ### Added
11
+ - net: ` TcpSocket::reuseport() ` , ` TcpSocket::set_reuseport() ` (#3083 ).
12
+ - net: ` TcpSocket::reuseaddr() ` (#3093 ).
13
+ - net: ` TcpSocket::local_addr() ` (#3093 ).
14
+ - net: add pid to ` UCred ` (#2633 ).
15
+
1
16
# 0.3.2 (October 27, 2020)
2
17
3
18
Adds ` AsyncFd ` as a replacement for v0.2's ` PollEvented ` .
Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ name = "tokio"
8
8
# - README.md
9
9
# - Update CHANGELOG.md.
10
10
# - Create "v0.3.x" git tag.
11
- version = " 0.3.2 "
11
+ version = " 0.3.3 "
12
12
edition = " 2018"
13
13
authors = [
" Tokio Contributors <[email protected] >" ]
14
14
license = " MIT"
15
15
readme = " README.md"
16
- documentation = " https://docs.rs/tokio/0.3.2 /tokio/"
16
+ documentation = " https://docs.rs/tokio/0.3.3 /tokio/"
17
17
repository = " https://github.com/tokio-rs/tokio"
18
18
homepage = " https://tokio.rs"
19
19
description = """
Original file line number Diff line number Diff line change 1
- #![ doc( html_root_url = "https://docs.rs/tokio/0.3.2 " ) ]
1
+ #![ doc( html_root_url = "https://docs.rs/tokio/0.3.3 " ) ]
2
2
#![ allow(
3
3
clippy:: cognitive_complexity,
4
4
clippy:: large_enum_variant,
You can’t perform that action at this time.
0 commit comments