File tree Expand file tree Collapse file tree 3 files changed +25
-5
lines changed Expand file tree Collapse file tree 3 files changed +25
-5
lines changed Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff line change 11[package ]
22name = " async-std"
3- version = " 1.5.0 "
3+ version = " 1.6.0-beta.1 "
44authors = [
55 " Stjepan Glavina <stjepang@gmail.com>" ,
66 " Yoshua Wuyts <yoshuawuyts@gmail.com>" ,
Original file line number Diff line number Diff line change 194194//!
195195//! ```toml
196196//! [dependencies.async-std]
197- //! version = "1.0.0 "
197+ //! version = "1.6.0-beta.1 "
198198//! features = ["unstable"]
199199//! ```
200200//!
207207//!
208208//! ```toml
209209//! [dependencies.async-std]
210- //! version = "1.0.0 "
210+ //! version = "1.6.0-beta.1 "
211211//! features = ["attributes"]
212212//! ```
213213//!
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//! ```
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//! ```
You can’t perform that action at this time.
0 commit comments