Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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>",
Expand Down Expand Up @@ -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"] }
Expand Down
10 changes: 5 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@
//!
//! ```toml
//! [dependencies.async-std]
//! version = "1.6.1"
//! version = "1.6.2"
//! features = ["unstable"]
//! ```
//!
Expand All @@ -210,7 +210,7 @@
//!
//! ```toml
//! [dependencies.async-std]
//! version = "1.6.1"
//! version = "1.6.2"
//! features = ["attributes"]
//! ```
//!
Expand All @@ -219,7 +219,7 @@
//!
//! ```toml
//! [dependencies.async-std]
//! version = "1.6.1"
//! version = "1.6.2"
//! features = ["tokio02"]
//! ```
//!
Expand All @@ -228,7 +228,7 @@
//!
//! ```toml
//! [dependencies.async-std]
//! version = "1.6.1"
//! version = "1.6.2"
//! default-features = false
//! features = ["std"]
//! ```
Expand All @@ -238,7 +238,7 @@
//!
//! ```toml
//! [dependencies.async-std]
//! version = "1.6.1"
//! version = "1.6.2"
//! default-features = false
//! features = ["alloc"]
//! ```
Expand Down