From 25049c8d1e03f7a61cef09f88dd14987ae321ef8 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Mon, 15 Nov 2021 16:01:41 -0800 Subject: [PATCH] chore: prepare Tokio v1.8.4 (#4237) # 1.8.4 (November 15, 2021) This release backports a bug fix from 1.13.1. ### Fixed - sync: fix a data race between `oneshot::Sender::send` and awaiting a `oneshot::Receiver` when the oneshot has been closed ([#4226]) [#4226]: https://github.com/tokio-rs/tokio/pull/4226 --- tokio/CHANGELOG.md | 11 +++++++++++ tokio/Cargo.toml | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index 866f4bff4..806d44076 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -1,3 +1,14 @@ +# 1.8.4 (November 15, 2021) + +This release backports a bug fix from 1.13.1. + +### Fixed + +- sync: fix a data race between `oneshot::Sender::send` and awaiting a + `oneshot::Receiver` when the oneshot has been closed ([#4226]) + +[#4226]: https://github.com/tokio-rs/tokio/pull/4226 + # 1.8.3 (July 26, 2021) This release backports two fixes from 1.9.0 diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index 321bb66a7..a4976d1dc 100644 --- a/tokio/Cargo.toml +++ b/tokio/Cargo.toml @@ -7,12 +7,12 @@ name = "tokio" # - README.md # - Update CHANGELOG.md. # - Create "v1.0.x" git tag. -version = "1.8.3" +version = "1.8.4" edition = "2018" authors = ["Tokio Contributors "] license = "MIT" readme = "README.md" -documentation = "https://docs.rs/tokio/1.8.3/tokio/" +documentation = "https://docs.rs/tokio/1.8.4/tokio/" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" description = """