chore: release v1.6.2

master
dignifiedquire 4 years ago
parent 5f418f07ac
commit e495ba46b3

@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
## [Unreleased]
# [1.6.2] - 2020-06-19
## Added
- Add `UdpSocket::peer_addr` ([#816](https://github.com/async-rs/async-std/pull/816))
## Changed
## Fixed
- Ensure the reactor is running for sockets and timers ([#819](https://github.com/async-rs/async-std/pull/819)).
- Avoid excessive polling in `flatten` and `flat_map` ([#701](https://github.com/async-rs/async-std/pull/701))
# [1.6.1] - 2020-06-11
## Added
@ -732,7 +746,8 @@ task::blocking(async {
- Initial beta release
[Unreleased]: https://github.com/async-rs/async-std/compare/v1.6.1...HEAD
[Unreleased]: https://github.com/async-rs/async-std/compare/v1.6.2...HEAD
[1.6.2]: https://github.com/async-rs/async-std/compare/v1.6.1...v1.6.2
[1.6.1]: https://github.com/async-rs/async-std/compare/v1.6.0...v1.6.1
[1.6.0]: https://github.com/async-rs/async-std/compare/v1.5.0...v1.6.0
[1.6.0-beta.2]: https://github.com/async-rs/async-std/compare/v1.6.0-beta.1...v1.6.0-beta.2

@ -1,6 +1,6 @@
[package]
name = "async-std"
version = "1.6.1"
version = "1.6.2"
authors = [
"Stjepan Glavina <stjepang@gmail.com>",
"Yoshua Wuyts <yoshuawuyts@gmail.com>",
@ -75,7 +75,7 @@ futures-timer = { version = "3.0.2", optional = true }
surf = { version = "1.0.3", optional = true }
[target.'cfg(not(target_os = "unknown"))'.dependencies]
smol = { version = "0.1.11", optional = true }
smol = { version = "0.1.14", optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies]
futures-timer = { version = "3.0.2", optional = true, features = ["wasm-bindgen"] }

@ -197,7 +197,7 @@
//!
//! ```toml
//! [dependencies.async-std]
//! version = "1.6.1"
//! version = "1.6.2"
//! features = ["unstable"]
//! ```
//!
@ -210,7 +210,7 @@
//!
//! ```toml
//! [dependencies.async-std]
//! version = "1.6.1"
//! version = "1.6.2"
//! features = ["attributes"]
//! ```
//!
@ -219,7 +219,7 @@
//!
//! ```toml
//! [dependencies.async-std]
//! version = "1.6.1"
//! version = "1.6.2"
//! features = ["tokio02"]
//! ```
//!
@ -228,7 +228,7 @@
//!
//! ```toml
//! [dependencies.async-std]
//! version = "1.6.1"
//! version = "1.6.2"
//! default-features = false
//! features = ["std"]
//! ```
@ -238,7 +238,7 @@
//!
//! ```toml
//! [dependencies.async-std]
//! version = "1.6.1"
//! version = "1.6.2"
//! default-features = false
//! features = ["alloc"]
//! ```

Loading…
Cancel
Save