@@ -7,7 +7,38 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
77
88## [ Unreleased]
99
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
1142
1243# [ 0.99.4] - 2019-08-21
1344
@@ -21,6 +52,7 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
2152
2253- Initial beta release
2354
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
2557[ 0.99.4 ] : https://github.com/async-rs/async-std/compare/v0.99.3...v0.99.4
2658[ 0.99.3 ] : https://github.com/async-rs/async-std/tree/v0.99.3
0 commit comments