summaryrefslogtreecommitdiffstats
path: root/tokio/src/lib.rs
diff options
context:
space:
mode:
authorEliza Weisman <eliza@buoyant.io>2020-07-21 17:52:16 -0700
committerGitHub <noreply@github.com>2020-07-21 17:52:16 -0700
commit21f726041cf9a4ca408d97394af220caf90312ed (patch)
tree31f179a81fcb65d6900dce671dfb6081b6d6eab0 /tokio/src/lib.rs
parentc344aac9252c34fcce196200a99529734b5cb9e8 (diff)
chore: prepare to release 0.2.22 (#2672)
# 0.2.22 (July 2!, 2020) ### Fixes - docs: misc improvements (#2572, #2658, #2663, #2656, #2647, #2630, #2487, #2621, #2624, #2600, #2623, #2622, #2577, #2569, #2589, #2575, #2540, #2564, #2567, #2520, #2521, #2493) - rt: allow calls to `block_on` inside calls to `block_in_place` that are themselves inside `block_on` (#2645) - net: fix non-portable behavior when dropping `TcpStream` `OwnedWriteHalf` (#2597) - io: improve stack usage by allocating large buffers on directly on the heap (#2634) - io: fix unsound pin projection in `AsyncReadExt::read_buf` and `AsyncWriteExt::write_buf` (#2612) - io: fix unnecessary zeroing for `AsyncRead` implementors (#2525) - io: Fix `BufReader` not correctly forwarding `poll_write_buf` (#2654) - io: fix panic in `AsyncReadExt::read_line` (#2541) ### Changes - coop: returning `Poll::Pending` no longer decrements the task budget (#2549) ### Added - io: little-endian variants of `AsyncReadExt` and `AsyncWriteExt` methods (#1915) - task: add [`tracing`] instrumentation to spawned tasks (#2655) - sync: allow unsized types in `Mutex` and `RwLock` (via `default` constructors) (#2615) - net: add `ToSocketAddrs` implementation for `&[SocketAddr]` (#2604) - fs: add `OpenOptionsExt` for `OpenOptions` (#2515) - fs: add `DirBuilder` (#2524) [`tracing`]: https://crates.io/crates/tracing Signed-off-by: Eliza Weisman <eliza@buoyant.io>
Diffstat (limited to 'tokio/src/lib.rs')
-rw-r--r--tokio/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio/src/lib.rs b/tokio/src/lib.rs
index e473847e..5775be30 100644
--- a/tokio/src/lib.rs
+++ b/tokio/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/tokio/0.2.21")]
+#![doc(html_root_url = "https://docs.rs/tokio/0.2.22")]
#![allow(
clippy::cognitive_complexity,
clippy::large_enum_variant,