Skip to content

Commit

Permalink
chore: prepare v0.2.4 release (#1917)
Browse files Browse the repository at this point in the history
Includes a `Mutex` bug fix
  • Loading branch information
carllerche committed Dec 7, 2019
1 parent c632337 commit 80abff0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions tokio/CHANGELOG.md
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions tokio/Cargo.toml
Expand Up @@ -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 <team@tokio.rs>"]
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 = """
Expand Down
2 changes: 1 addition & 1 deletion tokio/src/lib.rs
@@ -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,
Expand Down

0 comments on commit 80abff0

Please sign in to comment.