@@ -7,6 +7,37 @@ 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 ` io::BufWriter ` struct
15+ - Added ` future::join ` macro as "unstable"
16+ - Added ` future::select ` macro as "unstable"
17+ - Added ` future::try_join ` macro as "unstable"
18+ - Added ` future::try_select ` macro as "unstable"
19+ - Added ` task::ready ` macro as "unstable"
20+ - Added ` stream::Extend ` trait
21+ - Added ` sync::Arc ` struct from stdlib
22+ - Added ` sync::Weak ` struct from stdlib
23+ - Added ` stream::Stream::chain ` method
24+ - Added ` stream::Stream::filter ` method
25+ - Added ` stream::Stream::inspect ` method
26+ - Added ` stream::Stream::skip_while ` method
27+ - Added ` stream::Stream::skip ` method
28+ - Added ` stream::Stream::step_by ` method
29+
30+ ## Changed
31+
32+ - Correctly marked ` pin ` submodule as "unstable" in the docs
33+ - Updated tutorial to have certain functions suffixed with ` _loop `
34+ - ` io ` traits are now re-exports of futures-rs types, allowing them to be
35+ implemented
36+ - ` stream ` traits are now re-exports of futures-rs types, allowing them to be
37+ implemented
38+ - ` prelude::* ` now needs to be in scope for functions ` io ` and ` stream ` traits
39+ to work
40+
1041# [ 0.99.6] - 2019-09-19
1142
1243## Added
@@ -82,7 +113,8 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
82113
83114- Initial beta release
84115
85- [ Unreleased ] : https://github.com/async-rs/async-std/compare/v0.99.6...HEAD
116+ [ Unreleased ] : https://github.com/async-rs/async-std/compare/v0.99.7...HEAD
117+ [ 0.99.7 ] : https://github.com/async-rs/async-std/compare/v0.99.6...0.99.7
86118[ 0.99.6 ] : https://github.com/async-rs/async-std/compare/v0.99.5...0.99.6
87119[ 0.99.5 ] : https://github.com/async-rs/async-std/compare/v0.99.4...v0.99.5
88120[ 0.99.4 ] : https://github.com/async-rs/async-std/compare/v0.99.3...v0.99.4
0 commit comments