Skip to content

Commit 4009d6d

Browse files
prepare v1.6.0-beta.1
1 parent 6f6fced commit 4009d6d

File tree

3 files changed

+25
-5
lines changed

3 files changed

+25
-5
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
# [1.6.0-beta.1] - 2020-05-07
11+
12+
## Added
13+
14+
- Added `task::spawn_local`. ([#757](https://github.com/async-rs/async-std/pull/757))
15+
- Added out of the box support for `wasm`. ([#757](https://github.com/async-rs/async-std/pull/757))
16+
- Added `JoinHandle::cancel` ([#757](https://github.com/async-rs/async-std/pull/757))
17+
- Added `sync::Condvar` ([#369](https://github.com/async-rs/async-std/pull/369))
18+
- Added `sync::Sender::try_send` and `sync::Receiver::try_recv` ([#585](https://github.com/async-rs/async-std/pull/585))
19+
- Added `no_std` support for `task`, `future` and `stream` ([#680](https://github.com/async-rs/async-std/pull/680))
20+
21+
## Changed
22+
23+
- Switched underlying runtime to [`smol`](https://github.com/stjepang/smol/). ([#757](https://github.com/async-rs/async-std/pull/757))
24+
- Switched implementation of `sync::Barrier` to use `sync::Condvar` like `std` does. ([#581](https://github.com/async-rs/async-std/pull/581))
25+
26+
## Fixed
27+
28+
- Allow compilation on 32 bit targets, by using `AtomicUsize` for `TaskId`. ([#756](https://github.com/async-rs/async-std/pull/756))
29+
1030
# [1.5.0] - 2020-02-03
1131

1232
[API Documentation](https://docs.rs/async-std/1.5.0/async-std)

Cargo.toml

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

src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194
//!
195195
//! ```toml
196196
//! [dependencies.async-std]
197-
//! version = "1.0.0"
197+
//! version = "1.6.0-beta.1"
198198
//! features = ["unstable"]
199199
//! ```
200200
//!
@@ -207,7 +207,7 @@
207207
//!
208208
//! ```toml
209209
//! [dependencies.async-std]
210-
//! version = "1.0.0"
210+
//! version = "1.6.0-beta.1"
211211
//! features = ["attributes"]
212212
//! ```
213213
//!
@@ -216,7 +216,7 @@
216216
//!
217217
//! ```toml
218218
//! [dependencies.async-std]
219-
//! version = "1.0.0"
219+
//! version = "1.6.0-beta.1"
220220
//! default-features = false
221221
//! features = ["std"]
222222
//! ```
@@ -226,7 +226,7 @@
226226
//!
227227
//! ```toml
228228
//! [dependencies.async-std]
229-
//! version = "1.5.0"
229+
//! version = "1.6.0-beta.1"
230230
//! default-features = false
231231
//! features = ["alloc"]
232232
//! ```

0 commit comments

Comments
 (0)