summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2020-10-27 14:31:39 -0700
committerGitHub <noreply@github.com>2020-10-27 14:31:39 -0700
commit9097ae548f9a1bcd261385ceba29b800b0ee2a21 (patch)
tree55fd9f9062acabb78acfc99da1a5460672f4004d
parentd78655337a68bded305782a8a8b4ac7be42aa6a7 (diff)
chore: prepare v0.3.2 release (#3059)
-rw-r--r--tokio/CHANGELOG.md14
-rw-r--r--tokio/Cargo.toml4
-rw-r--r--tokio/src/lib.rs2
3 files changed, 17 insertions, 3 deletions
diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md
index 001bbef0..fa17be4d 100644
--- a/tokio/CHANGELOG.md
+++ b/tokio/CHANGELOG.md
@@ -1,3 +1,17 @@
+# 0.3.2 (October 27, 2020)
+
+Adds `AsyncFd` as a replacement for v0.2's `PollEvented`.
+
+### Fixed
+- io: fix a potential deadlock when shutting down the I/O driver (#2903).
+- sync: `RwLockWriteGuard::downgrade()` bug (#2957).
+
+### Added
+- io: `AsyncFd` for receiving readiness events on raw FDs (#2903).
+- net: `poll_*` function on `UdpSocket` (#2981).
+- net: `UdpSocket::take_error()` (#3051).
+- sync: `oneshot::Sender::poll_closed()` (#3032).
+
# 0.3.1 (October 21, 2020)
This release fixes an use-after-free in the IO driver. Additionally, the `read_buf`
diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml
index 6589f485..144c2d53 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.1"
+version = "0.3.2"
edition = "2018"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
readme = "README.md"
-documentation = "https://docs.rs/tokio/0.3.1/tokio/"
+documentation = "https://docs.rs/tokio/0.3.2/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 690beab3..b14ae721 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.1")]
+#![doc(html_root_url = "https://docs.rs/tokio/0.3.2")]
#![allow(
clippy::cognitive_complexity,
clippy::large_enum_variant,