mirror of
https://github.com/async-rs/async-std.git
synced 2025-01-16 10:49:55 +00:00
Merge pull request #890 from async-rs/1-6-5
This commit is contained in:
commit
f09fa42042
3 changed files with 16 additions and 8 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
# [1.6.5] - 2020-09-28
|
||||||
|
|
||||||
|
## Fixed
|
||||||
|
|
||||||
|
- Fix `TcpListener::incoming`. ([#889](https://github.com/async-rs/async-std/pull/889))
|
||||||
|
- Fix tokio compatability flag. ([#882](https://github.com/async-rs/async-std/pull/882))
|
||||||
|
|
||||||
# [1.6.4] - 2020-09-16
|
# [1.6.4] - 2020-09-16
|
||||||
|
|
||||||
## Added
|
## Added
|
||||||
|
@ -778,8 +785,9 @@ task::blocking(async {
|
||||||
|
|
||||||
- Initial beta release
|
- Initial beta release
|
||||||
|
|
||||||
[Unreleased]: https://github.com/async-rs/async-std/compare/v1.6.4...HEAD
|
[Unreleased]: https://github.com/async-rs/async-std/compare/v1.6.5...HEAD
|
||||||
[1.6.3]: https://github.com/async-rs/async-std/compare/v1.6.3...v1.6.4
|
[1.6.5]: https://github.com/async-rs/async-std/compare/v1.6.4...v1.6.5
|
||||||
|
[1.6.4]: https://github.com/async-rs/async-std/compare/v1.6.3...v1.6.4
|
||||||
[1.6.3]: https://github.com/async-rs/async-std/compare/v1.6.2...v1.6.3
|
[1.6.3]: 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 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "async-std"
|
name = "async-std"
|
||||||
version = "1.6.4"
|
version = "1.6.5"
|
||||||
authors = [
|
authors = [
|
||||||
"Stjepan Glavina <stjepang@gmail.com>",
|
"Stjepan Glavina <stjepang@gmail.com>",
|
||||||
"Yoshua Wuyts <yoshuawuyts@gmail.com>",
|
"Yoshua Wuyts <yoshuawuyts@gmail.com>",
|
||||||
|
|
10
src/lib.rs
10
src/lib.rs
|
@ -197,7 +197,7 @@
|
||||||
//!
|
//!
|
||||||
//! ```toml
|
//! ```toml
|
||||||
//! [dependencies.async-std]
|
//! [dependencies.async-std]
|
||||||
//! version = "1.6.4"
|
//! version = "1.6.5"
|
||||||
//! features = ["unstable"]
|
//! features = ["unstable"]
|
||||||
//! ```
|
//! ```
|
||||||
//!
|
//!
|
||||||
|
@ -210,7 +210,7 @@
|
||||||
//!
|
//!
|
||||||
//! ```toml
|
//! ```toml
|
||||||
//! [dependencies.async-std]
|
//! [dependencies.async-std]
|
||||||
//! version = "1.6.4"
|
//! version = "1.6.5"
|
||||||
//! features = ["attributes"]
|
//! features = ["attributes"]
|
||||||
//! ```
|
//! ```
|
||||||
//!
|
//!
|
||||||
|
@ -219,7 +219,7 @@
|
||||||
//!
|
//!
|
||||||
//! ```toml
|
//! ```toml
|
||||||
//! [dependencies.async-std]
|
//! [dependencies.async-std]
|
||||||
//! version = "1.6.4"
|
//! version = "1.6.5"
|
||||||
//! features = ["tokio02"]
|
//! features = ["tokio02"]
|
||||||
//! ```
|
//! ```
|
||||||
//!
|
//!
|
||||||
|
@ -228,7 +228,7 @@
|
||||||
//!
|
//!
|
||||||
//! ```toml
|
//! ```toml
|
||||||
//! [dependencies.async-std]
|
//! [dependencies.async-std]
|
||||||
//! version = "1.6.4"
|
//! version = "1.6.5"
|
||||||
//! 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.4"
|
//! version = "1.6.5"
|
||||||
//! default-features = false
|
//! default-features = false
|
||||||
//! features = ["alloc"]
|
//! features = ["alloc"]
|
||||||
//! ```
|
//! ```
|
||||||
|
|
Loading…
Reference in a new issue