summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2020-11-18 12:38:13 -0800
committerGitHub <noreply@github.com>2020-11-18 12:38:13 -0800
commit479c545c20b2cb44a8f09600733adc8c8dcb5aa0 (patch)
treedf6daba6b2f595de47ada2dd2f518475669ab919
parent34fcef258b84d17f8d418b39eb61fa07fa87c390 (diff)
chore: prepare v0.3.4 release (#3152)
-rw-r--r--tokio/CHANGELOG.md18
-rw-r--r--tokio/Cargo.toml4
-rw-r--r--tokio/src/lib.rs2
3 files changed, 21 insertions, 3 deletions
diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md
index ce979cb9..994dda49 100644
--- a/tokio/CHANGELOG.md
+++ b/tokio/CHANGELOG.md
@@ -1,3 +1,21 @@
+# 0.3.4 (November 18, 2020)
+
+### Fixed
+- stream: `StreamMap` `Default` impl bound (#3093).
+- io: `AsyncFd::into_inner()` should deregister the FD (#3104).
+
+### Changed
+- meta: `parking_lot` feature enabled with `full` (#3119).
+
+### Added
+- io: `AsyncWrite` vectored writes (#3149).
+- net: TCP/UDP readiness and non-blocking ops (#3130, #2743, #3138).
+- net: TCP socket option (linger, send/recv buf size) (#3145, #3143).
+- net: PID field in `UCred` with solaris/illumos (#3085).
+- rt: `runtime::Handle` allows spawning onto a runtime (#3079).
+- sync: `Notify::notify_waiters()` (#3098).
+- sync: `acquire_many()`, `try_acquire_many()` to `Semaphore` (#3067).
+
# 0.3.3 (November 2, 2020)
Fixes a soundness hole by adding a missing `Send` bound to
diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml
index 1af88fe0..c658fc44 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.3"
+version = "0.3.4"
edition = "2018"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
readme = "README.md"
-documentation = "https://docs.rs/tokio/0.3.3/tokio/"
+documentation = "https://docs.rs/tokio/0.3.4/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 229f050f..2bb63824 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.3")]
+#![doc(html_root_url = "https://docs.rs/tokio/0.3.4")]
#![allow(
clippy::cognitive_complexity,
clippy::large_enum_variant,