Skip to content

Commit 04fc1d9

Browse files
committed
v0.99.7
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
1 parent 785371c commit 04fc1d9

File tree

2 files changed

+34
-2
lines changed

2 files changed

+34
-2
lines changed

CHANGELOG.md

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,37 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
77

88
## [Unreleased]
99

10+
# [0.99.7] - 2019-09-26
11+
12+
## Added
13+
14+
- Added `io::BufWriter` struct
15+
- Added `future::join` macro as "unstable"
16+
- Added `future::select` macro as "unstable"
17+
- Added `future::try_join` macro as "unstable"
18+
- Added `future::try_select` macro as "unstable"
19+
- Added `task::ready` macro as "unstable"
20+
- Added `stream::Extend` trait
21+
- Added `sync::Arc` struct from stdlib
22+
- Added `sync::Weak` struct from stdlib
23+
- Added `stream::Stream::chain` method
24+
- Added `stream::Stream::filter` method
25+
- Added `stream::Stream::inspect` method
26+
- Added `stream::Stream::skip_while` method
27+
- Added `stream::Stream::skip` method
28+
- Added `stream::Stream::step_by` method
29+
30+
## Changed
31+
32+
- Correctly marked `pin` submodule as "unstable" in the docs
33+
- Updated tutorial to have certain functions suffixed with `_loop`
34+
- `io` traits are now re-exports of futures-rs types, allowing them to be
35+
implemented
36+
- `stream` traits are now re-exports of futures-rs types, allowing them to be
37+
implemented
38+
- `prelude::*` now needs to be in scope for functions `io` and `stream` traits
39+
to work
40+
1041
# [0.99.6] - 2019-09-19
1142

1243
## Added
@@ -82,7 +113,8 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
82113

83114
- Initial beta release
84115

85-
[Unreleased]: https://github.com/async-rs/async-std/compare/v0.99.6...HEAD
116+
[Unreleased]: https://github.com/async-rs/async-std/compare/v0.99.7...HEAD
117+
[0.99.7]: https://github.com/async-rs/async-std/compare/v0.99.6...0.99.7
86118
[0.99.6]: https://github.com/async-rs/async-std/compare/v0.99.5...0.99.6
87119
[0.99.5]: https://github.com/async-rs/async-std/compare/v0.99.4...v0.99.5
88120
[0.99.4]: https://github.com/async-rs/async-std/compare/v0.99.3...v0.99.4

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-std"
3-
version = "0.99.6"
3+
version = "0.99.7"
44
authors = [
55
"Stjepan Glavina <stjepang@gmail.com>",
66
"Yoshua Wuyts <yoshuawuyts@gmail.com>",

0 commit comments

Comments
 (0)