File tree 3 files changed +22
-7
lines changed
3 files changed +22
-7
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
7
7
8
8
## [ Unreleased]
9
9
10
+ # [ 1.6.3] - 2020-07-31
11
+
12
+ ## Added
13
+
14
+ ## Changed
15
+
16
+ - Switched from smol to individual executor parts. ([ #836 ] ( https://github.com/async-rs/async-std/pull/836 ) )
17
+ - Replaced internal ` Mutex ` implementation with ` async-mutex ` . ([ #822 ] ( https://github.com/async-rs/async-std/pull/822 ) )
18
+
19
+ ## Fixed
20
+
21
+ - Added missing ` Send ` guards to ` Stream::collect ` . ([ #665 ] ( https://github.com/async-rs/async-std/pull/665 ) )
22
+
23
+
10
24
# [ 1.6.2] - 2020-06-19
11
25
12
26
## Added
@@ -746,7 +760,8 @@ task::blocking(async {
746
760
747
761
- Initial beta release
748
762
749
- [ Unreleased ] : https://github.com/async-rs/async-std/compare/v1.6.2...HEAD
763
+ [ Unreleased ] : https://github.com/async-rs/async-std/compare/v1.6.3...HEAD
764
+ [ 1.6.2 ] : https://github.com/async-rs/async-std/compare/v1.6.2...v1.6.3
750
765
[ 1.6.2 ] : https://github.com/async-rs/async-std/compare/v1.6.1...v1.6.2
751
766
[ 1.6.1 ] : https://github.com/async-rs/async-std/compare/v1.6.0...v1.6.1
752
767
[ 1.6.0 ] : https://github.com/async-rs/async-std/compare/v1.5.0...v1.6.0
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " async-std"
3
- version = " 1.6.2 "
3
+ version = " 1.6.3 "
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 197
197
//!
198
198
//! ```toml
199
199
//! [dependencies.async-std]
200
- //! version = "1.6.2 "
200
+ //! version = "1.6.3 "
201
201
//! features = ["unstable"]
202
202
//! ```
203
203
//!
210
210
//!
211
211
//! ```toml
212
212
//! [dependencies.async-std]
213
- //! version = "1.6.2 "
213
+ //! version = "1.6.3 "
214
214
//! features = ["attributes"]
215
215
//! ```
216
216
//!
219
219
//!
220
220
//! ```toml
221
221
//! [dependencies.async-std]
222
- //! version = "1.6.2 "
222
+ //! version = "1.6.3 "
223
223
//! features = ["tokio02"]
224
224
//! ```
225
225
//!
228
228
//!
229
229
//! ```toml
230
230
//! [dependencies.async-std]
231
- //! version = "1.6.2 "
231
+ //! version = "1.6.3 "
232
232
//! default-features = false
233
233
//! features = ["std"]
234
234
//! ```
238
238
//!
239
239
//! ```toml
240
240
//! [dependencies.async-std]
241
- //! version = "1.6.2 "
241
+ //! version = "1.6.3 "
242
242
//! default-features = false
243
243
//! features = ["alloc"]
244
244
//! ```
You can’t perform that action at this time.
0 commit comments