@@ -7,6 +7,38 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
77
88## [ Unreleased]
99
10+ # [ 0.99.7] - 2019-09-26
11+
12+ ## Added
13+
14+ - Added ` future::join ` macro as "unstable"
15+ - Added ` future::select ` macro as "unstable"
16+ - Added ` future::try_join ` macro as "unstable"
17+ - Added ` future::try_select ` macro as "unstable"
18+ - Added ` io::BufWriter ` struct
19+ - Added ` stream::Extend ` trait
20+ - Added ` stream::Stream::chain ` method
21+ - Added ` stream::Stream::filter ` method
22+ - Added ` stream::Stream::inspect ` method
23+ - Added ` stream::Stream::skip_while ` method
24+ - Added ` stream::Stream::skip ` method
25+ - Added ` stream::Stream::step_by ` method
26+ - Added ` sync::Arc ` struct from stdlib
27+ - Added ` sync::Barrier ` struct as "unstable"
28+ - Added ` sync::Weak ` struct from stdlib
29+ - Added ` task::ready ` macro as "unstable"
30+
31+ ## Changed
32+
33+ - Correctly marked the ` pin ` submodule as "unstable" in the docs
34+ - Updated tutorial to have certain functions suffixed with ` _loop `
35+ - ` io ` traits are now re-exports of futures-rs types, allowing them to be
36+ implemented
37+ - ` stream ` traits are now re-exports of futures-rs types, allowing them to be
38+ implemented
39+ - ` prelude::* ` now needs to be in scope for functions ` io ` and ` stream ` traits
40+ to work
41+
1042# [ 0.99.6] - 2019-09-19
1143
1244## Added
@@ -82,7 +114,8 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
82114
83115- Initial beta release
84116
85- [ Unreleased ] : https://github.com/async-rs/async-std/compare/v0.99.6...HEAD
117+ [ Unreleased ] : https://github.com/async-rs/async-std/compare/v0.99.7...HEAD
118+ [ 0.99.7 ] : https://github.com/async-rs/async-std/compare/v0.99.6...0.99.7
86119[ 0.99.6 ] : https://github.com/async-rs/async-std/compare/v0.99.5...0.99.6
87120[ 0.99.5 ] : https://github.com/async-rs/async-std/compare/v0.99.4...v0.99.5
88121[ 0.99.4 ] : https://github.com/async-rs/async-std/compare/v0.99.3...v0.99.4
0 commit comments