summaryrefslogtreecommitdiffstats
path: root/tokio
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-12-06 19:50:29 -0800
committerGitHub <noreply@github.com>2019-12-06 19:50:29 -0800
commit80abff0e570e365cca41a1fd7aba5a15a47654d8 (patch)
tree05c80ea0cff5284b9377f2b61b0abc08395f6a1c /tokio
parentc632337e6f94013d9d39495f1d442351e6fbf6b6 (diff)
chore: prepare v0.2.4 release (#1917)
Includes a `Mutex` bug fix
Diffstat (limited to 'tokio')
-rw-r--r--tokio/CHANGELOG.md5
-rw-r--r--tokio/Cargo.toml4
-rw-r--r--tokio/src/lib.rs2
3 files changed, 8 insertions, 3 deletions
diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md
index e7e1c458..99ec7087 100644
--- a/tokio/CHANGELOG.md
+++ b/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
diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml
index da1954b1..586a756d 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.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 = """
diff --git a/tokio/src/lib.rs b/tokio/src/lib.rs
index 81d35b20..916c9ac1 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.3")]
+#![doc(html_root_url = "https://docs.rs/tokio/0.2.4")]
#![warn(
missing_debug_implementations,
missing_docs,