File tree 3 files changed +24
-9
lines changed
3 files changed +24
-9
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 <stjepang@gmail.com>" ,
6
6
" Yoshua Wuyts <yoshuawuyts@gmail.com>" ,
@@ -80,8 +80,8 @@ futures-timer = { version = "3.0.2", optional = true }
80
80
surf = { version = " 1.0.3" , optional = true }
81
81
82
82
[target .'cfg(not(target_os = "unknown"))' .dependencies ]
83
- async-executor = { version = " 0.1.1 " , features = [" async-io" ], optional = true }
84
- async-io = { version = " 0.1.5 " , optional = true }
83
+ async-executor = { version = " 0.1.2 " , features = [" async-io" ], optional = true }
84
+ async-io = { version = " 0.1.8 " , optional = true }
85
85
blocking = { version = " 0.5.0" , optional = true }
86
86
futures-lite = { version = " 0.1.8" , optional = true }
87
87
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