@@ -7,6 +7,32 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
7
7
8
8
## [ Unreleased]
9
9
10
+ # [ 1.0.0] - 2019-11-11
11
+
12
+ ## Added
13
+
14
+ - Added ` Future::join ` as "unstable", replacing ` future::join! ` .
15
+ - Added ` Future::try_join ` as "unstable", replacing ` future::try_join! ` .
16
+ - Implemented ` FromIterator ` and ` Extend ` for ` PathBuf ` .
17
+ - Enabled ` stable ` and ` beta ` channel testing on CI.
18
+ - Implemented ` FromStream ` for ` PathBuf ` .
19
+ - Loosened the trait bounds of ` io::copy ` on "unstable".
20
+
21
+ ## Changed
22
+
23
+ - Added a ` Sync ` bound to ` RwLock ` , resolving a memory safety issue.
24
+ - Fixed a bug where our ` attributes ` Cargo feature wasn't working as intended.
25
+ - Fixed a bug in ` Stream::take_while ` where it could continue after it should've
26
+ ended.
27
+ - Improved documentation of ` Stream::merge ` , documenting ordering guarantees.
28
+ - Various quality of life improvements to the ` stream ` submodule.
29
+ - Various quality of life improvements to the ` future ` submodule.
30
+
31
+ ## Removed
32
+
33
+ - Removed ` future::join! ` in favor of ` Future::join ` .
34
+ - Removed ` future::try_join! ` in favor of ` Future::try_join ` .
35
+
10
36
# [ 0.99.12] - 2019-11-07
11
37
12
38
[ API Documentation] ( https://docs.rs/async-std/0.99.12/async-std )
@@ -388,7 +414,8 @@ task::blocking(async {
388
414
389
415
- Initial beta release
390
416
391
- [ Unreleased ] : https://github.com/async-rs/async-std/compare/v0.99.12...HEAD
417
+ [ Unreleased ] : https://github.com/async-rs/async-std/compare/v1.0.0...HEAD
418
+ [ 1.0.0 ] : https://github.com/async-rs/async-std/compare/v0.99.12...v1.0.0
392
419
[ 0.99.12 ] : https://github.com/async-rs/async-std/compare/v0.99.11...v0.99.12
393
420
[ 0.99.11 ] : https://github.com/async-rs/async-std/compare/v0.99.10...v0.99.11
394
421
[ 0.99.10 ] : https://github.com/async-rs/async-std/compare/v0.99.9...v0.99.10
0 commit comments