Skip to content

Commit

Permalink
Merge pull request #845 from async-rs/1-6-3
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire committed Aug 13, 2020
2 parents d04d769 + a1e83c1 commit 9a16081
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 9 deletions.
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.3] - 2020-07-31

## Added

## Changed

- Switched from smol to individual executor parts. ([#836](https://github.com/async-rs/async-std/pull/836))
- Replaced internal `Mutex` implementation with `async-mutex`. ([#822](https://github.com/async-rs/async-std/pull/822))

## Fixed

- Added missing `Send` guards to `Stream::collect`. ([#665](https://github.com/async-rs/async-std/pull/665))


# [1.6.2] - 2020-06-19

## Added
Expand Down Expand Up @@ -746,7 +760,8 @@ task::blocking(async {

- Initial beta release

[Unreleased]: https://github.com/async-rs/async-std/compare/v1.6.2...HEAD
[Unreleased]: https://github.com/async-rs/async-std/compare/v1.6.3...HEAD
[1.6.2]: https://github.com/async-rs/async-std/compare/v1.6.2...v1.6.3
[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
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "async-std"
version = "1.6.2"
version = "1.6.3"
authors = [
"Stjepan Glavina <stjepang@gmail.com>",
"Yoshua Wuyts <yoshuawuyts@gmail.com>",
Expand Down Expand Up @@ -80,8 +80,8 @@ futures-timer = { version = "3.0.2", optional = true }
surf = { version = "1.0.3", optional = true }

[target.'cfg(not(target_os = "unknown"))'.dependencies]
async-executor = { version = "0.1.1", features = ["async-io"], optional = true }
async-io = { version = "0.1.5", optional = true }
async-executor = { version = "0.1.2", features = ["async-io"], optional = true }
async-io = { version = "0.1.8", optional = true }
blocking = { version = "0.5.0", optional = true }
futures-lite = { version = "0.1.8", optional = true }

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.2"
//! version = "1.6.3"
//! features = ["unstable"]
//! ```
//!
Expand All @@ -210,7 +210,7 @@
//!
//! ```toml
//! [dependencies.async-std]
//! version = "1.6.2"
//! version = "1.6.3"
//! features = ["attributes"]
//! ```
//!
Expand All @@ -219,7 +219,7 @@
//!
//! ```toml
//! [dependencies.async-std]
//! version = "1.6.2"
//! version = "1.6.3"
//! features = ["tokio02"]
//! ```
//!
Expand All @@ -228,7 +228,7 @@
//!
//! ```toml
//! [dependencies.async-std]
//! version = "1.6.2"
//! version = "1.6.3"
//! default-features = false
//! features = ["std"]
//! ```
Expand All @@ -238,7 +238,7 @@
//!
//! ```toml
//! [dependencies.async-std]
//! version = "1.6.2"
//! version = "1.6.3"
//! default-features = false
//! features = ["alloc"]
//! ```
Expand Down

0 comments on commit 9a16081

Please sign in to comment.