@@ -7,6 +7,37 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
7
7
8
8
## [ Unreleased]
9
9
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
+
10
41
# [ 0.99.6] - 2019-09-19
11
42
12
43
## Added
@@ -82,7 +113,8 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
82
113
83
114
- Initial beta release
84
115
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
86
118
[ 0.99.6 ] : https://github.com/async-rs/async-std/compare/v0.99.5...0.99.6
87
119
[ 0.99.5 ] : https://github.com/async-rs/async-std/compare/v0.99.4...v0.99.5
88
120
[ 0.99.4 ] : https://github.com/async-rs/async-std/compare/v0.99.3...v0.99.4
0 commit comments