summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2020-02-27 10:18:01 -0800
committerGitHub <noreply@github.com>2020-02-27 10:18:01 -0800
commitc6fc1db6981733c8bfe90d979132b00cfc03b83b (patch)
tree2e1b079328bd8c2a5c756c28f7d994a2200d2506
parentd44ce338af6ef3cf666f5b3db6e8e0bf057e5490 (diff)
chore: prepare v0.2.12 release (#2278)
Also includes `tokio-macros` v0.2.5.
-rw-r--r--tokio-macros/CHANGELOG.md5
-rw-r--r--tokio-macros/Cargo.toml4
-rw-r--r--tokio-macros/src/lib.rs2
-rw-r--r--tokio/CHANGELOG.md27
-rw-r--r--tokio/Cargo.toml4
-rw-r--r--tokio/src/lib.rs2
6 files changed, 38 insertions, 6 deletions
diff --git a/tokio-macros/CHANGELOG.md b/tokio-macros/CHANGELOG.md
index 91955c7a..d9edc5d2 100644
--- a/tokio-macros/CHANGELOG.md
+++ b/tokio-macros/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 0.2.5 (February 27, 2019)
+
+### Fixed
+- doc improvements (#2225).
+
# 0.2.4 (January 27, 2019)
### Fixed
diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml
index 01bfdc28..27092128 100644
--- a/tokio-macros/Cargo.toml
+++ b/tokio-macros/Cargo.toml
@@ -7,13 +7,13 @@ name = "tokio-macros"
# - Cargo.toml
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
-version = "0.2.4"
+version = "0.2.5"
edition = "2018"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
-documentation = "https://docs.rs/tokio-macros/0.2.3/tokio_macros"
+documentation = "https://docs.rs/tokio-macros/0.2.5/tokio_macros"
description = """
Tokio's proc macros.
"""
diff --git a/tokio-macros/src/lib.rs b/tokio-macros/src/lib.rs
index bc8f203a..9fdfb5bd 100644
--- a/tokio-macros/src/lib.rs
+++ b/tokio-macros/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/tokio-macros/0.2.3")]
+#![doc(html_root_url = "https://docs.rs/tokio-macros/0.2.5")]
#![allow(clippy::needless_doctest_main)]
#![warn(
missing_debug_implementations,
diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md
index 91a4670a..ed785082 100644
--- a/tokio/CHANGELOG.md
+++ b/tokio/CHANGELOG.md
@@ -1,3 +1,30 @@
+# 0.2.12 (February 27, 2019)
+
+### Fixes
+- net: `UnixStream::poll_shutdown` should call `shutdown(Write)` (#2245).
+- process: Wake up read and write on `EPOLLERR` (#2218).
+- rt: potential deadlock when using `block_in_place` and shutting down the
+ runtime (#2119).
+- rt: only detect number of CPUs if `core_threads` not specified (#2238).
+- sync: reduce `watch::Receiver` struct size (#2191).
+- time: succeed when setting delay of `$MAX-1` (#2184).
+- time: avoid having to poll `DelayQueue` after inserting new delay (#2217).
+
+### Added
+- macros: `pin!` variant that assigns to identifier and pins (#2274).
+- net: impl `Stream` for `Listener` types (#2275).
+- rt: `Runtime::shutdown_timeout` waits for runtime to shutdown for specified
+ duration (#2186).
+- stream: `StreamMap` merges streams and can insert / remove streams at
+ runtime (#2185).
+- stream: `StreamExt::skip()` skips a fixed number of items (#2204).
+- stream: `StreamExt::skip_while()` skips items based on a predicate (#2205).
+- sync: `Notify` provides basic `async` / `await` task notification (#2210).
+- sync: `Mutex::into_inner` retrieves guarded data (#2250).
+- sync: `mpsc::Sender::send_timeout` sends, waiting for up to specified duration
+ for channel capacity (#2227).
+- time: impl `Ord` and `Hash` for `Instant` (#2239).
+
# 0.2.11 (January 27, 2019)
### Fixes
diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml
index 1a3167d3..20f68c39 100644
--- a/tokio/Cargo.toml
+++ b/tokio/Cargo.toml
@@ -8,12 +8,12 @@ name = "tokio"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.2.x" git tag.
-version = "0.2.11"
+version = "0.2.12"
edition = "2018"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
readme = "README.md"
-documentation = "https://docs.rs/tokio/0.2.11/tokio/"
+documentation = "https://docs.rs/tokio/0.2.12/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 036d1036..043c3522 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.11")]
+#![doc(html_root_url = "https://docs.rs/tokio/0.2.12")]
#![allow(
clippy::cognitive_complexity,
clippy::large_enum_variant,