mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-08 00:00:13 +02:00
chore: prepare v0.2.5 release (#1984)
Also includes: - `tokio-macros` v0.2.1
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
# 0.2.1 (December 18, 2019)
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
- inherit visibility when wrapping async fn (#1954).
|
||||||
|
|
||||||
# 0.2.0 (November 26, 2019)
|
# 0.2.0 (November 26, 2019)
|
||||||
|
|
||||||
- Initial release
|
- Initial release
|
||||||
|
|||||||
@@ -7,13 +7,13 @@ name = "tokio-macros"
|
|||||||
# - Cargo.toml
|
# - Cargo.toml
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.1.x" git tag.
|
# - Create "v0.1.x" git tag.
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Tokio Contributors <[email protected]>"]
|
authors = ["Tokio Contributors <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://tokio.rs"
|
homepage = "https://tokio.rs"
|
||||||
documentation = "https://docs.rs/tokio-macros/0.2.0/tokio_macros"
|
documentation = "https://docs.rs/tokio-macros/0.2.1/tokio_macros"
|
||||||
description = """
|
description = """
|
||||||
Tokio's proc macros.
|
Tokio's proc macros.
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#![doc(html_root_url = "https://docs.rs/tokio-macros/0.2.0")]
|
#![doc(html_root_url = "https://docs.rs/tokio-macros/0.2.1")]
|
||||||
#![warn(
|
#![warn(
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
missing_docs,
|
missing_docs,
|
||||||
|
|||||||
@@ -1,3 +1,27 @@
|
|||||||
|
# 0.2.5 (December 18, 2019)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- `io::AsyncSeek` trait (#1924).
|
||||||
|
- `Mutex::try_lock` (#1939)
|
||||||
|
- `mpsc::Receiver::try_recv` and `mpsc::UnboundedReceiver::try_recv` (#1939).
|
||||||
|
- `writev` support for `TcpStream` (#1956).
|
||||||
|
- `time::throttle` for throttling streams (#1949).
|
||||||
|
- implement `Stream` for `time::DelayQueue` (#1975).
|
||||||
|
- `sync::broadcast` provides a fan-out channel (#1943).
|
||||||
|
- `sync::Semaphore` provides an async semaphore (#1973).
|
||||||
|
- `stream::StreamExt` provides stream utilities (#1962).
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
- deadlock risk while shutting down the runtime (#1972).
|
||||||
|
- panic while shutting down the runtime (#1978).
|
||||||
|
- `sync::MutexGuard` debug output (#1961).
|
||||||
|
- misc doc improvements (#1933, #1934, #1940, #1942).
|
||||||
|
|
||||||
|
### Changes
|
||||||
|
- runtime threads are configured with `runtime::Builder::core_threads` and
|
||||||
|
`runtime::Builder::max_threads`. `runtime::Builder::num_threads` is
|
||||||
|
deprecated (#1977).
|
||||||
|
|
||||||
# 0.2.4 (December 6, 2019)
|
# 0.2.4 (December 6, 2019)
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
|
|||||||
+2
-2
@@ -8,12 +8,12 @@ name = "tokio"
|
|||||||
# - README.md
|
# - README.md
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.2.x" git tag.
|
# - Create "v0.2.x" git tag.
|
||||||
version = "0.2.4"
|
version = "0.2.5"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Tokio Contributors <[email protected]>"]
|
authors = ["Tokio Contributors <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
documentation = "https://docs.rs/tokio/0.2.4/tokio/"
|
documentation = "https://docs.rs/tokio/0.2.5/tokio/"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://tokio.rs"
|
homepage = "https://tokio.rs"
|
||||||
description = """
|
description = """
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
#![doc(html_root_url = "https://docs.rs/tokio/0.2.4")]
|
#![doc(html_root_url = "https://docs.rs/tokio/0.2.5")]
|
||||||
#![allow(clippy::cognitive_complexity)]
|
#![allow(clippy::cognitive_complexity)]
|
||||||
#![warn(
|
#![warn(
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
|
|||||||
Reference in New Issue
Block a user