|
1 |
| -# Version 0.99.3 |
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to async-std will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 6 | +and this project adheres to [Semantic Versioning](https://book.async.rs/overview/stability-guarantees.html). |
| 7 | + |
| 8 | +## [Unreleased] |
| 9 | + |
| 10 | +# [0.99.6] - 2019-09-19 |
| 11 | + |
| 12 | +## Added |
| 13 | + |
| 14 | +- Added `stream::Stream::collect` as "unstable" |
| 15 | +- Added `stream::Stream::enumerate` |
| 16 | +- Added `stream::Stream::fuse` |
| 17 | +- Added `stream::Stream::fold` |
| 18 | +- Added `stream::Stream::scan` |
| 19 | +- Added `stream::Stream::zip` |
| 20 | +- Added `stream::join` macro as "unstable" |
| 21 | +- Added `stream::DoubleEndedStream` as "unstable" |
| 22 | +- Added `stream::FromStream` trait as "unstable" |
| 23 | +- Added `stream::IntoStream` trait as "unstable" |
| 24 | +- Added `io::Cursor` as "unstable" |
| 25 | +- Added `io::BufRead::consume` method |
| 26 | +- Added `io::repeat` |
| 27 | +- Added `io::Slice` and `io::SliceMut` |
| 28 | +- Added documentation for feature flags |
| 29 | +- Added `pin` submodule as "unstable" |
| 30 | +- Added the ability to `collect` a stream of `Result<T, E>`s into a |
| 31 | + `Result<impl FromStream<T>, E>` |
| 32 | + |
| 33 | +## Changed |
| 34 | + |
| 35 | +- Refactored the scheduling algorithm of our executor to use work stealing |
| 36 | +- Refactored the network driver, removing 400 lines of code |
| 37 | +- Removed the `Send` bound from `task::block_on` |
| 38 | +- Removed `Unpin` bound from `impl<T: futures::stream::Stream> Stream for T` |
| 39 | + |
| 40 | +# [0.99.5] - 2019-09-12 |
| 41 | + |
| 42 | +## Added |
| 43 | + |
| 44 | +- Added tests for `io::timeout` |
| 45 | +- Added `io::BufRead::fill_buf`, an `async fn` counterpart to `poll_fill_buf` |
| 46 | +- Added `fs::create_dir_all` |
| 47 | +- Added `future::timeout`, a free function to time out futures after a threshold |
| 48 | +- Added `io::prelude` |
| 49 | +- Added `net::ToSocketAddrs`, a non-blocking version of std's `ToSocketAddrs` |
| 50 | +- Added `stream::Stream::all` |
| 51 | +- Added `stream::Stream::filter_map` |
| 52 | +- Added `stream::Stream::find_map` |
| 53 | +- Added `stream::Stream::find` |
| 54 | +- Added `stream::Stream::min_by` |
| 55 | +- Added `stream::Stream::nth` |
| 56 | + |
| 57 | +## Changed |
| 58 | + |
| 59 | +- Polished the text and examples of the tutorial |
| 60 | +- `cargo fmt` on all examples |
| 61 | +- Simplified internals of `TcpStream::connect_to` |
| 62 | +- Modularized our CI setup, enabled a rustfmt fallback, and improved caching |
| 63 | +- Reduced our dependency on the `futures-rs` crate, improving compilation times |
| 64 | +- Split `io::Read`, `io::Write`, `io::BufRead`, and `stream::Stream` into |
| 65 | + multiple files |
| 66 | +- `fs::File` now flushes more often to prevent flushes during `seek` |
| 67 | +- Updated all dependencies |
| 68 | +- Fixed a bug in the conversion of `File` into raw handle |
| 69 | +- Fixed compilation errors on the latest nightly |
| 70 | + |
| 71 | +## Removed |
| 72 | + |
| 73 | +# [0.99.4] - 2019-08-21 |
| 74 | + |
| 75 | +## Changes |
| 76 | + |
| 77 | +- Many small changes in the book, mostly typos |
| 78 | +- Documentation fixes correcting examples |
| 79 | +- Now works with recent nightly with stabilised async/await (> 2019-08-21) |
| 80 | + |
| 81 | +# [0.99.3] - 2019-08-16 |
2 | 82 |
|
3 | 83 | - Initial beta release
|
| 84 | + |
| 85 | +[Unreleased]: https://github.com/async-rs/async-std/compare/v0.99.6...HEAD |
| 86 | +[0.99.6]: https://github.com/async-rs/async-std/compare/v0.99.5...0.99.6 |
| 87 | +[0.99.5]: https://github.com/async-rs/async-std/compare/v0.99.4...v0.99.5 |
| 88 | +[0.99.4]: https://github.com/async-rs/async-std/compare/v0.99.3...v0.99.4 |
| 89 | +[0.99.3]: https://github.com/async-rs/async-std/tree/v0.99.3 |
0 commit comments