Skip to content

Commit

Permalink
chore: prepare v0.3.3 release (#3090)
Browse files Browse the repository at this point in the history
  • Loading branch information
carllerche committed Nov 2, 2020
1 parent 20a2b9e commit 42de3bc
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions tokio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# 0.3.3 (November 2, 2020)

Fixes a soundness hole by adding a missing `Send` bound to
`Runtime::spawn_blocking()`.

### Fixed
- rt: include missing `Send`, fixing soundness hole (#3089).
- tracing: avoid huge trace span names (#3074).

### Added
- net: `TcpSocket::reuseport()`, `TcpSocket::set_reuseport()` (#3083).
- net: `TcpSocket::reuseaddr()` (#3093).
- net: `TcpSocket::local_addr()` (#3093).
- net: add pid to `UCred` (#2633).

# 0.3.2 (October 27, 2020)

Adds `AsyncFd` as a replacement for v0.2's `PollEvented`.
Expand Down
4 changes: 2 additions & 2 deletions tokio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ name = "tokio"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.3.x" git tag.
version = "0.3.2"
version = "0.3.3"
edition = "2018"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/tokio/0.3.2/tokio/"
documentation = "https://docs.rs/tokio/0.3.3/tokio/"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
description = """
Expand Down
2 changes: 1 addition & 1 deletion tokio/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tokio/0.3.2")]
#![doc(html_root_url = "https://docs.rs/tokio/0.3.3")]
#![allow(
clippy::cognitive_complexity,
clippy::large_enum_variant,
Expand Down

0 comments on commit 42de3bc

Please sign in to comment.