Skip to content

Commit a241f00

Browse files
committed
v1.0.0
Signed-off-by: Yoshua Wuyts <[email protected]>
1 parent bc400ad commit a241f00

File tree

4 files changed

+34
-7
lines changed

4 files changed

+34
-7
lines changed

CHANGELOG.md

+28-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,32 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
77

88
## [Unreleased]
99

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+
1036
# [0.99.12] - 2019-11-07
1137

1238
[API Documentation](https://docs.rs/async-std/0.99.12/async-std)
@@ -388,7 +414,8 @@ task::blocking(async {
388414

389415
- Initial beta release
390416

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
392419
[0.99.12]: https://github.com/async-rs/async-std/compare/v0.99.11...v0.99.12
393420
[0.99.11]: https://github.com/async-rs/async-std/compare/v0.99.10...v0.99.11
394421
[0.99.10]: https://github.com/async-rs/async-std/compare/v0.99.9...v0.99.10

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-std"
3-
version = "0.99.12"
3+
version = "1.0.0"
44
authors = [
55
"Stjepan Glavina <[email protected]>",
66
"Yoshua Wuyts <[email protected]>",

docs/src/tutorial/specification.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ Add the following lines to `Cargo.toml`:
5050

5151
```toml
5252
[dependencies]
53-
futures-preview = { version = "0.3.0-alpha.19", features = [ "async-await" ] }
54-
async-std = "0.99"
53+
futures = "0.3.0"
54+
async-std = "1.00"
5555
```

src/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154
//!
155155
//! ```toml
156156
//! [dependencies.async-std]
157-
//! version = "0.99"
157+
//! version = "1.0.0"
158158
//! features = ["unstable"]
159159
//! ```
160160
//!
@@ -167,7 +167,7 @@
167167
//!
168168
//! ```toml
169169
//! [dependencies.async-std]
170-
//! version = "0.99"
170+
//! version = "1.0.0"
171171
//! features = ["attributes"]
172172
//! ```
173173
//!
@@ -176,7 +176,7 @@
176176
//!
177177
//! ```toml
178178
//! [dependencies.async-std]
179-
//! version = "0.99"
179+
//! version = "1.0.0"
180180
//! default-features = false
181181
//! features = ["std"]
182182
//! ```

0 commit comments

Comments
 (0)