@@ -7,7 +7,38 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
7
7
8
8
## [ Unreleased]
9
9
10
- - Expose ` fs::create_dir_all `
10
+ # [ 0.99.5] - 2019-09-12
11
+
12
+ ## Added
13
+
14
+ - Added tests for ` io::timeout `
15
+ - Added ` io::BufRead::fill_buf ` , an ` async fn ` counterpart to ` poll_fill_buf `
16
+ - Added ` fs::create_dir_all `
17
+ - Added ` future::timeout ` , a free function to time out futures after a threshold
18
+ - Added ` io::prelude `
19
+ - Added ` net::ToSocketAddrs ` , a non-blocking version of std's ` ToSocketAddrs `
20
+ - Added ` stream::Stream::all `
21
+ - Added ` stream::Stream::filter_map `
22
+ - Added ` stream::Stream::find_map `
23
+ - Added ` stream::Stream::find `
24
+ - Added ` stream::Stream::min_by `
25
+ - Added ` stream::Stream::nth `
26
+
27
+ ## Changed
28
+
29
+ - Polished the text and examples of the tutorial
30
+ - ` cargo fmt ` on all examples
31
+ - Simplified internals of ` TcpStream::connect_to `
32
+ - Modularized our CI setup, enabled a rustfmt fallback, and improved caching
33
+ - Reduced our dependency on the ` futures-rs ` crate, improving compilation times
34
+ - Split ` io::Read ` , ` io::Write ` , ` io::BufRead ` , and ` stream::Stream ` into
35
+ multiple files
36
+ - ` fs::File ` now flushes more often to prevent flushes during ` seek `
37
+ - Updated all dependencies
38
+ - Fixed a bug in the conversion of ` File ` into raw handle
39
+ - Fixed compilation errors on the latest nightly
40
+
41
+ ## Removed
11
42
12
43
# [ 0.99.4] - 2019-08-21
13
44
@@ -21,6 +52,7 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
21
52
22
53
- Initial beta release
23
54
24
- [ Unreleased ] : https://github.com/olivierlacan/keep-a-changelog/compare/v0.99.3...HEAD
55
+ [ Unreleased ] : https://github.com/async-rs/async-std/compare/v0.99.5...HEAD
56
+ [ 0.99.5 ] : https://github.com/async-rs/async-std/compare/v0.99.4...v0.99.5
25
57
[ 0.99.4 ] : https://github.com/async-rs/async-std/compare/v0.99.3...v0.99.4
26
58
[ 0.99.3 ] : https://github.com/async-rs/async-std/tree/v0.99.3
0 commit comments