mirror of
https://github.com/async-rs/async-std.git
synced 2025-01-16 10:49:55 +00:00
prepare v0.99.6
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
This commit is contained in:
parent
f45b39d7c0
commit
8d31aa69cf
2 changed files with 33 additions and 2 deletions
33
CHANGELOG.md
33
CHANGELOG.md
|
@ -7,6 +7,36 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
# [0.99.6] - 2019-09-19
|
||||
|
||||
## Added
|
||||
|
||||
- Added `stream::Stream::collect` as "unstable"
|
||||
- Added `stream::Stream::enumerate`
|
||||
- Added `stream::Stream::fuse`
|
||||
- Added `stream::Stream::fold`
|
||||
- Added `stream::Stream::scan`
|
||||
- Added `stream::Stream::zip`
|
||||
- Added `stream::join` macro as "unstable"
|
||||
- Added `stream::DoubleEndedStream` as "unstable"
|
||||
- Added `stream::FromStream` trait as "unstable"
|
||||
- Added `stream::IntoStream` trait as "unstable"
|
||||
- Added `io::Cursor` as "unstable"
|
||||
- Added `io::BufRead::consume` method
|
||||
- Added `io::repeat`
|
||||
- Added `io::Slice` and `io::SliceMut`
|
||||
- Added documentation for feature flags
|
||||
- Added `pin` submodule as "unstable"
|
||||
- Added the ability to `collect` a stream of `Result<T, E>`s into a
|
||||
`Result<impl FromStream<T>, E>`
|
||||
|
||||
## Changed
|
||||
|
||||
- Refactored the scheduling algorithm of our executor to use work stealing
|
||||
- Refactored the network driver, removing 400 lines of code
|
||||
- Removed the `Send` bound from `task::block_on`
|
||||
- Removed `Unpin` bound from `impl<T: futures::stream::Stream> Stream for T`
|
||||
|
||||
# [0.99.5] - 2019-09-12
|
||||
|
||||
## Added
|
||||
|
@ -52,7 +82,8 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
|
|||
|
||||
- Initial beta release
|
||||
|
||||
[Unreleased]: https://github.com/async-rs/async-std/compare/v0.99.5...HEAD
|
||||
[Unreleased]: https://github.com/async-rs/async-std/compare/v0.99.6...HEAD
|
||||
[0.99.6]: https://github.com/async-rs/async-std/compare/v0.99.5...0.99.6
|
||||
[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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "async-std"
|
||||
version = "0.99.5"
|
||||
version = "0.99.6"
|
||||
authors = [
|
||||
"Stjepan Glavina <stjepang@gmail.com>",
|
||||
"Yoshua Wuyts <yoshuawuyts@gmail.com>",
|
||||
|
|
Loading…
Reference in a new issue