Skip to content

Commit 42de3bc

Browse files
authored
chore: prepare v0.3.3 release (#3090)
1 parent 20a2b9e commit 42de3bc

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

tokio/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
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+
116
# 0.3.2 (October 27, 2020)
217

318
Adds `AsyncFd` as a replacement for v0.2's `PollEvented`.

tokio/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ name = "tokio"
88
# - README.md
99
# - Update CHANGELOG.md.
1010
# - Create "v0.3.x" git tag.
11-
version = "0.3.2"
11+
version = "0.3.3"
1212
edition = "2018"
1313
authors = ["Tokio Contributors <[email protected]>"]
1414
license = "MIT"
1515
readme = "README.md"
16-
documentation = "https://docs.rs/tokio/0.3.2/tokio/"
16+
documentation = "https://docs.rs/tokio/0.3.3/tokio/"
1717
repository = "https://github.com/tokio-rs/tokio"
1818
homepage = "https://tokio.rs"
1919
description = """

tokio/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/tokio/0.3.2")]
1+
#![doc(html_root_url = "https://docs.rs/tokio/0.3.3")]
22
#![allow(
33
clippy::cognitive_complexity,
44
clippy::large_enum_variant,

0 commit comments

Comments
 (0)