Skip to content

Commit f09fa42

Browse files
Merge pull request #890 from async-rs/1-6-5
2 parents c4eb910 + 0d50906 commit f09fa42

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

CHANGELOG.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
77

88
## [Unreleased]
99

10+
# [1.6.5] - 2020-09-28
11+
12+
## Fixed
13+
14+
- Fix `TcpListener::incoming`. ([#889](https://github.com/async-rs/async-std/pull/889))
15+
- Fix tokio compatability flag. ([#882](https://github.com/async-rs/async-std/pull/882))
16+
1017
# [1.6.4] - 2020-09-16
1118

1219
## Added
@@ -778,8 +785,9 @@ task::blocking(async {
778785

779786
- Initial beta release
780787

781-
[Unreleased]: https://github.com/async-rs/async-std/compare/v1.6.4...HEAD
782-
[1.6.3]: https://github.com/async-rs/async-std/compare/v1.6.3...v1.6.4
788+
[Unreleased]: https://github.com/async-rs/async-std/compare/v1.6.5...HEAD
789+
[1.6.5]: https://github.com/async-rs/async-std/compare/v1.6.4...v1.6.5
790+
[1.6.4]: https://github.com/async-rs/async-std/compare/v1.6.3...v1.6.4
783791
[1.6.3]: https://github.com/async-rs/async-std/compare/v1.6.2...v1.6.3
784792
[1.6.2]: https://github.com/async-rs/async-std/compare/v1.6.1...v1.6.2
785793
[1.6.1]: https://github.com/async-rs/async-std/compare/v1.6.0...v1.6.1

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-std"
3-
version = "1.6.4"
3+
version = "1.6.5"
44
authors = [
55
"Stjepan Glavina <[email protected]>",
66
"Yoshua Wuyts <[email protected]>",

src/lib.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@
197197
//!
198198
//! ```toml
199199
//! [dependencies.async-std]
200-
//! version = "1.6.4"
200+
//! version = "1.6.5"
201201
//! features = ["unstable"]
202202
//! ```
203203
//!
@@ -210,7 +210,7 @@
210210
//!
211211
//! ```toml
212212
//! [dependencies.async-std]
213-
//! version = "1.6.4"
213+
//! version = "1.6.5"
214214
//! features = ["attributes"]
215215
//! ```
216216
//!
@@ -219,7 +219,7 @@
219219
//!
220220
//! ```toml
221221
//! [dependencies.async-std]
222-
//! version = "1.6.4"
222+
//! version = "1.6.5"
223223
//! features = ["tokio02"]
224224
//! ```
225225
//!
@@ -228,7 +228,7 @@
228228
//!
229229
//! ```toml
230230
//! [dependencies.async-std]
231-
//! version = "1.6.4"
231+
//! version = "1.6.5"
232232
//! default-features = false
233233
//! features = ["std"]
234234
//! ```
@@ -238,7 +238,7 @@
238238
//!
239239
//! ```toml
240240
//! [dependencies.async-std]
241-
//! version = "1.6.4"
241+
//! version = "1.6.5"
242242
//! default-features = false
243243
//! features = ["alloc"]
244244
//! ```

0 commit comments

Comments
 (0)