From 42de3bc7a44100eec06645a5bfef8be286ff0507 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Mon, 2 Nov 2020 15:36:17 -0800 Subject: chore: prepare v0.3.3 release (#3090) --- tokio/CHANGELOG.md | 15 +++++++++++++++ tokio/Cargo.toml | 4 ++-- tokio/src/lib.rs | 2 +- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index 565adb5e..ce979cb9 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -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`. diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index b67e46c1..d1dbda19 100644 --- a/tokio/Cargo.toml +++ b/tokio/Cargo.toml @@ -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 "] 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 = """ diff --git a/tokio/src/lib.rs b/tokio/src/lib.rs index b14ae721..229f050f 100644 --- a/tokio/src/lib.rs +++ b/tokio/src/lib.rs @@ -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, -- cgit v1.2.3