summaryrefslogtreecommitdiffstats
path: root/tokio/CHANGELOG.md
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2020-01-27 10:32:07 -0800
committerGitHub <noreply@github.com>2020-01-27 10:32:07 -0800
commit00e3c29e487ff05b6252be8052b7ba86f7c08202 (patch)
tree00702f88ce63ae8ab669f1313ec7c71717cb8a71 /tokio/CHANGELOG.md
parentbcba4aaa5414eeb12b57e86a3abaf61425cef22b (diff)
chore: prepare v0.2.11 release (#2179)
Also bumps: - tokio-macros: v0.2.4
Diffstat (limited to 'tokio/CHANGELOG.md')
-rw-r--r--tokio/CHANGELOG.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md
index 56536781..91a4670a 100644
--- a/tokio/CHANGELOG.md
+++ b/tokio/CHANGELOG.md
@@ -1,3 +1,24 @@
+# 0.2.11 (January 27, 2019)
+
+### Fixes
+- docs: misc fixes and tweaks (#2155, #2103, #2027, #2167, #2175).
+- macros: handle generics in `#[tokio::main]` method (#2177).
+- sync: `broadcast` potential lost notifications (#2135).
+- rt: improve "no runtime" panic messages (#2145).
+
+### Added
+- optional support for using `parking_lot` internally (#2164).
+- fs: `fs::copy`, an async version of `std::fs::copy` (#2079).
+- macros: `select!` waits for the first branch to complete (#2152).
+- macros: `join!` waits for all branches to complete (#2158).
+- macros: `try_join!` waits for all branches to complete or the first error (#2169).
+- macros: `pin!` pins a value to the stack (#2163).
+- net: `ReadHalf::poll()` and `ReadHalf::poll_peak` (#2151)
+- stream: `StreamExt::timeout()` sets a per-item max duration (#2149).
+- stream: `StreamExt::fold()` applies a function, producing a single value. (#2122).
+- sync: impl `Eq`, `PartialEq` for `oneshot::RecvError` (#2168).
+- task: methods for inspecting the `JoinError` cause (#2051).
+
# 0.2.10 (January 21, 2019)
### Fixes