File tree Expand file tree Collapse file tree 3 files changed +23
-8
lines changed Expand file tree Collapse file tree 3 files changed +23
-8
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.2] - 2020-06-19
11
+
12
+ ## Added
13
+
14
+ - Add ` UdpSocket::peer_addr ` ([ #816 ] ( https://github.com/async-rs/async-std/pull/816 ) )
15
+
16
+ ## Changed
17
+
18
+ ## Fixed
19
+
20
+ - Ensure the reactor is running for sockets and timers ([ #819 ] ( https://github.com/async-rs/async-std/pull/819 ) ).
21
+ - Avoid excessive polling in ` flatten ` and ` flat_map ` ([ #701 ] ( https://github.com/async-rs/async-std/pull/701 ) )
22
+
23
+
10
24
# [ 1.6.1] - 2020-06-11
11
25
12
26
## Added
@@ -732,7 +746,8 @@ task::blocking(async {
732
746
733
747
- Initial beta release
734
748
735
- [ Unreleased ] : https://github.com/async-rs/async-std/compare/v1.6.1...HEAD
749
+ [ Unreleased ] : https://github.com/async-rs/async-std/compare/v1.6.2...HEAD
750
+ [ 1.6.2 ] : https://github.com/async-rs/async-std/compare/v1.6.1...v1.6.2
736
751
[ 1.6.1 ] : https://github.com/async-rs/async-std/compare/v1.6.0...v1.6.1
737
752
[ 1.6.0 ] : https://github.com/async-rs/async-std/compare/v1.5.0...v1.6.0
738
753
[ 1.6.0-beta.2 ] : https://github.com/async-rs/async-std/compare/v1.6.0-beta.1...v1.6.0-beta.2
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " async-std"
3
- version = " 1.6.1 "
3
+ version = " 1.6.2 "
4
4
authors = [
5
5
" Stjepan Glavina <stjepang@gmail.com>" ,
6
6
" Yoshua Wuyts <yoshuawuyts@gmail.com>" ,
@@ -75,7 +75,7 @@ futures-timer = { version = "3.0.2", optional = true }
75
75
surf = { version = " 1.0.3" , optional = true }
76
76
77
77
[target .'cfg(not(target_os = "unknown"))' .dependencies ]
78
- smol = { version = " 0.1.11 " , optional = true }
78
+ smol = { version = " 0.1.14 " , optional = true }
79
79
80
80
[target .'cfg(target_arch = "wasm32")' .dependencies ]
81
81
futures-timer = { version = " 3.0.2" , optional = true , features = [" wasm-bindgen" ] }
Original file line number Diff line number Diff line change 197
197
//!
198
198
//! ```toml
199
199
//! [dependencies.async-std]
200
- //! version = "1.6.1 "
200
+ //! version = "1.6.2 "
201
201
//! features = ["unstable"]
202
202
//! ```
203
203
//!
210
210
//!
211
211
//! ```toml
212
212
//! [dependencies.async-std]
213
- //! version = "1.6.1 "
213
+ //! version = "1.6.2 "
214
214
//! features = ["attributes"]
215
215
//! ```
216
216
//!
219
219
//!
220
220
//! ```toml
221
221
//! [dependencies.async-std]
222
- //! version = "1.6.1 "
222
+ //! version = "1.6.2 "
223
223
//! features = ["tokio02"]
224
224
//! ```
225
225
//!
228
228
//!
229
229
//! ```toml
230
230
//! [dependencies.async-std]
231
- //! version = "1.6.1 "
231
+ //! version = "1.6.2 "
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.1 "
241
+ //! version = "1.6.2 "
242
242
//! default-features = false
243
243
//! features = ["alloc"]
244
244
//! ```
You can’t perform that action at this time.
0 commit comments