2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-04-06 00:16:52 +00:00

chore: release 1.6.3

This commit is contained in:
dignifiedquire 2020-07-31 17:09:23 +02:00
parent 8e2a540bca
commit a1e83c182e
3 changed files with 22 additions and 7 deletions

View file

@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
## [Unreleased] ## [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 # [1.6.2] - 2020-06-19
## Added ## Added
@ -746,7 +760,8 @@ task::blocking(async {
- Initial beta release - 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.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.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]: https://github.com/async-rs/async-std/compare/v1.5.0...v1.6.0

View file

@ -1,6 +1,6 @@
[package] [package]
name = "async-std" name = "async-std"
version = "1.6.2" version = "1.6.3"
authors = [ authors = [
"Stjepan Glavina <stjepang@gmail.com>", "Stjepan Glavina <stjepang@gmail.com>",
"Yoshua Wuyts <yoshuawuyts@gmail.com>", "Yoshua Wuyts <yoshuawuyts@gmail.com>",

View file

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