Skip to content

Commit caa76af

Browse files
Merge pull request #821 from async-rs/1-6-2
chore: release v1.6.2
2 parents 5f418f0 + e495ba4 commit caa76af

File tree

3 files changed

+23
-8
lines changed

3 files changed

+23
-8
lines changed

Diff for: CHANGELOG.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
77

88
## [Unreleased]
99

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+
1024
# [1.6.1] - 2020-06-11
1125

1226
## Added
@@ -732,7 +746,8 @@ task::blocking(async {
732746

733747
- Initial beta release
734748

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
736751
[1.6.1]: https://github.com/async-rs/async-std/compare/v1.6.0...v1.6.1
737752
[1.6.0]: https://github.com/async-rs/async-std/compare/v1.5.0...v1.6.0
738753
[1.6.0-beta.2]: https://github.com/async-rs/async-std/compare/v1.6.0-beta.1...v1.6.0-beta.2

Diff for: Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-std"
3-
version = "1.6.1"
3+
version = "1.6.2"
44
authors = [
55
"Stjepan Glavina <[email protected]>",
66
"Yoshua Wuyts <[email protected]>",
@@ -75,7 +75,7 @@ futures-timer = { version = "3.0.2", optional = true }
7575
surf = { version = "1.0.3", optional = true }
7676

7777
[target.'cfg(not(target_os = "unknown"))'.dependencies]
78-
smol = { version = "0.1.11", optional = true }
78+
smol = { version = "0.1.14", optional = true }
7979

8080
[target.'cfg(target_arch = "wasm32")'.dependencies]
8181
futures-timer = { version = "3.0.2", optional = true, features = ["wasm-bindgen"] }

Diff for: src/lib.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@
197197
//!
198198
//! ```toml
199199
//! [dependencies.async-std]
200-
//! version = "1.6.1"
200+
//! version = "1.6.2"
201201
//! features = ["unstable"]
202202
//! ```
203203
//!
@@ -210,7 +210,7 @@
210210
//!
211211
//! ```toml
212212
//! [dependencies.async-std]
213-
//! version = "1.6.1"
213+
//! version = "1.6.2"
214214
//! features = ["attributes"]
215215
//! ```
216216
//!
@@ -219,7 +219,7 @@
219219
//!
220220
//! ```toml
221221
//! [dependencies.async-std]
222-
//! version = "1.6.1"
222+
//! version = "1.6.2"
223223
//! features = ["tokio02"]
224224
//! ```
225225
//!
@@ -228,7 +228,7 @@
228228
//!
229229
//! ```toml
230230
//! [dependencies.async-std]
231-
//! version = "1.6.1"
231+
//! version = "1.6.2"
232232
//! default-features = false
233233
//! features = ["std"]
234234
//! ```
@@ -238,7 +238,7 @@
238238
//!
239239
//! ```toml
240240
//! [dependencies.async-std]
241-
//! version = "1.6.1"
241+
//! version = "1.6.2"
242242
//! default-features = false
243243
//! features = ["alloc"]
244244
//! ```

0 commit comments

Comments
 (0)