2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-16 10:49:55 +00:00
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
This commit is contained in:
Yoshua Wuyts 2019-10-29 00:44:07 +01:00
parent b3d1fa9c98
commit b10930207c
No known key found for this signature in database
GPG key ID: 24EA8164F96777ED

View file

@ -43,6 +43,9 @@ assert_eq!(r.recv().await, Some(2));
- Added `sync::channel` as "unstable". - Added `sync::channel` as "unstable".
- Added doc links from instantiated structs to the methods that create them. - Added doc links from instantiated structs to the methods that create them.
- Implemented `Extend` + `FromStream` for `PathBuf`. - Implemented `Extend` + `FromStream` for `PathBuf`.
- Added `Stream::sum` as "unstable"
- Added `Stream::product` as "unstable"
- Added `Stream::timeout` as "unstable"
## Changed ## Changed
- Fixed an issue with `block_on` so it works even when nested. - Fixed an issue with `block_on` so it works even when nested.
@ -51,6 +54,7 @@ assert_eq!(r.recv().await, Some(2));
- Updated the homepage link in `Cargo.toml` to point to [async.rs](https://async.rs). - Updated the homepage link in `Cargo.toml` to point to [async.rs](https://async.rs).
- Updated the module-level documentation for `stream` and `sync`. - Updated the module-level documentation for `stream` and `sync`.
- Various typos and grammar fixes. - Various typos and grammar fixes.
- Removed redundant file flushes, improving the performance of `File` operations
## Removed ## Removed
Nothing was removed in this release. Nothing was removed in this release.