From 47daf555f33b4a4be7df546e89b883731cb0c579 Mon Sep 17 00:00:00 2001 From: Florian Gilcher Date: Sat, 28 Sep 2019 16:31:36 +0200 Subject: [PATCH 1/2] Pin futures to 0.3.0-alpha.18 --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f25426a5f..b62259c08 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,9 +50,9 @@ surf = "1.0.2" tempdir = "0.3.7" # These are used by the book for examples -futures-channel-preview = "0.3.0-alpha.18" -futures-util-preview = "0.3.0-alpha.18" +futures-channel-preview = "=0.3.0-alpha.18" +futures-util-preview = "=0.3.0-alpha.18" [dev-dependencies.futures-preview] -version = "0.3.0-alpha.18" +version = "=0.3.0-alpha.18" features = ["std", "nightly", "async-await"] From b2df0d37fb4a409cd885b9208983f490a6c780b0 Mon Sep 17 00:00:00 2001 From: Florian Gilcher Date: Sat, 28 Sep 2019 16:32:11 +0200 Subject: [PATCH 2/2] Release 0.99.8 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c5f7c0b2..fc84cb9bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview ## [Unreleased] +# [0.99.8] - 2019-09-28 + +## Changed + +- Pin futures-preview to `0.3.0-alpha.18`, to avoid rustc upgrade problems. + # [0.99.7] - 2019-09-26 ## Added diff --git a/Cargo.toml b/Cargo.toml index b62259c08..a895d11f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-std" -version = "0.99.7" +version = "0.99.8" authors = [ "Stjepan Glavina ", "Yoshua Wuyts ",