mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-21 00:00:10 +02:00
chore: prepare v0.2.12 release (#2278)
Also includes `tokio-macros` v0.2.5.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
# 0.2.5 (February 27, 2019)
|
||||
|
||||
### Fixed
|
||||
- doc improvements (#2225).
|
||||
|
||||
# 0.2.4 (January 27, 2019)
|
||||
|
||||
### Fixed
|
||||
|
||||
@@ -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 <[email protected]>"]
|
||||
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.
|
||||
"""
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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
|
||||
|
||||
+2
-2
@@ -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 <[email protected]>"]
|
||||
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 = """
|
||||
|
||||
+1
-1
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user