Skip to content

Commit

Permalink
Merge #186
Browse files Browse the repository at this point in the history
186: Prepare release for 0.99.5 r=yoshuawuyts a=yoshuawuyts

Prepares the release for `v0.99.5`. Thanks!

Co-authored-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
  • Loading branch information
bors[bot] and yoshuawuyts committed Sep 12, 2019
2 parents 2ecaf18 + 55669f5 commit 9d71584
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 3 deletions.
36 changes: 34 additions & 2 deletions CHANGELOG.md
Expand Up @@ -7,7 +7,38 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview

## [Unreleased]

- Expose `fs::create_dir_all`
# [0.99.5] - 2019-09-12

## Added

- Added tests for `io::timeout`
- Added `io::BufRead::fill_buf`, an `async fn` counterpart to `poll_fill_buf`
- Added `fs::create_dir_all`
- Added `future::timeout`, a free function to time out futures after a threshold
- Added `io::prelude`
- Added `net::ToSocketAddrs`, a non-blocking version of std's `ToSocketAddrs`
- Added `stream::Stream::all`
- Added `stream::Stream::filter_map`
- Added `stream::Stream::find_map`
- Added `stream::Stream::find`
- Added `stream::Stream::min_by`
- Added `stream::Stream::nth`

## Changed

- Polished the text and examples of the tutorial
- `cargo fmt` on all examples
- Simplified internals of `TcpStream::connect_to`
- Modularized our CI setup, enabled a rustfmt fallback, and improved caching
- Reduced our dependency on the `futures-rs` crate, improving compilation times
- Split `io::Read`, `io::Write`, `io::BufRead`, and `stream::Stream` into
multiple files
- `fs::File` now flushes more often to prevent flushes during `seek`
- Updated all dependencies
- Fixed a bug in the conversion of `File` into raw handle
- Fixed compilation errors on the latest nightly

## Removed

# [0.99.4] - 2019-08-21

Expand All @@ -21,6 +52,7 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview

- Initial beta release

[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.99.3...HEAD
[Unreleased]: https://github.com/async-rs/async-std/compare/v0.99.5...HEAD
[0.99.5]: https://github.com/async-rs/async-std/compare/v0.99.4...v0.99.5
[0.99.4]: https://github.com/async-rs/async-std/compare/v0.99.3...v0.99.4
[0.99.3]: https://github.com/async-rs/async-std/tree/v0.99.3
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "async-std"
version = "0.99.4"
version = "0.99.5"
authors = [
"Stjepan Glavina <stjepang@gmail.com>",
"The async-std Project Developers",
Expand Down

0 comments on commit 9d71584

Please sign in to comment.