chore: prepare v0.2.4 release (#1917)

Includes a `Mutex` bug fix
This commit is contained in:
Carl Lerche
2019-12-06 19:50:29 -08:00
committed by GitHub
parent c632337e6f
commit 80abff0e57
3 changed files with 8 additions and 3 deletions
+5
View File
@@ -1,3 +1,8 @@
# 0.2.4 (December 6, 2019)
### Fixes
- `sync::Mutex` deadlock when `lock()` future is dropped early (#1898).
# 0.2.3 (December 6, 2019)
### Added
+2 -2
View File
@@ -8,12 +8,12 @@ name = "tokio"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.2.x" git tag.
version = "0.2.3"
version = "0.2.4"
edition = "2018"
authors = ["Tokio Contributors <[email protected]>"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/tokio/0.2.3/tokio/"
documentation = "https://docs.rs/tokio/0.2.4/tokio/"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
description = """
+1 -1
View File
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tokio/0.2.3")]
#![doc(html_root_url = "https://docs.rs/tokio/0.2.4")]
#![warn(
missing_debug_implementations,
missing_docs,