File tree 3 files changed +25
-5
lines changed
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
7
7
8
8
## [ Unreleased]
9
9
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
+
10
30
# [ 1.5.0] - 2020-02-03
11
31
12
32
[ API Documentation] ( https://docs.rs/async-std/1.5.0/async-std )
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " async-std"
3
- version = " 1.5.0 "
3
+ version = " 1.6.0-beta.1 "
4
4
authors = [
5
5
" Stjepan Glavina <[email protected] >" ,
6
6
" Yoshua Wuyts <[email protected] >" ,
Original file line number Diff line number Diff line change 194
194
//!
195
195
//! ```toml
196
196
//! [dependencies.async-std]
197
- //! version = "1.0.0 "
197
+ //! version = "1.6.0-beta.1 "
198
198
//! features = ["unstable"]
199
199
//! ```
200
200
//!
207
207
//!
208
208
//! ```toml
209
209
//! [dependencies.async-std]
210
- //! version = "1.0.0 "
210
+ //! version = "1.6.0-beta.1 "
211
211
//! features = ["attributes"]
212
212
//! ```
213
213
//!
216
216
//!
217
217
//! ```toml
218
218
//! [dependencies.async-std]
219
- //! version = "1.0.0 "
219
+ //! version = "1.6.0-beta.1 "
220
220
//! default-features = false
221
221
//! features = ["std"]
222
222
//! ```
226
226
//!
227
227
//! ```toml
228
228
//! [dependencies.async-std]
229
- //! version = "1.5.0 "
229
+ //! version = "1.6.0-beta.1 "
230
230
//! default-features = false
231
231
//! features = ["alloc"]
232
232
//! ```
You can’t perform that action at this time.
0 commit comments