Skip to content

Commit 9d71584

Browse files
Merge #186
186: Prepare release for 0.99.5 r=yoshuawuyts a=yoshuawuyts Prepares the release for `v0.99.5`. Thanks! Co-authored-by: Yoshua Wuyts <[email protected]>
2 parents 2ecaf18 + 55669f5 commit 9d71584

File tree

2 files changed

+35
-3
lines changed

2 files changed

+35
-3
lines changed

Diff for: CHANGELOG.md

+34-2
Original file line numberDiff line numberDiff line change
@@ -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

Diff for: Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-std"
3-
version = "0.99.4"
3+
version = "0.99.5"
44
authors = [
55
"Stjepan Glavina <[email protected]>",
66
"The async-std Project Developers",

0 commit comments

Comments
 (0)