File tree 3 files changed +16
-8
lines changed
3 files changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
7
7
8
8
## [ Unreleased]
9
9
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
+
10
17
# [ 1.6.4] - 2020-09-16
11
18
12
19
## Added
@@ -778,8 +785,9 @@ task::blocking(async {
778
785
779
786
- Initial beta release
780
787
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
783
791
[ 1.6.3 ] : https://github.com/async-rs/async-std/compare/v1.6.2...v1.6.3
784
792
[ 1.6.2 ] : https://github.com/async-rs/async-std/compare/v1.6.1...v1.6.2
785
793
[ 1.6.1 ] : https://github.com/async-rs/async-std/compare/v1.6.0...v1.6.1
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " async-std"
3
- version = " 1.6.4 "
3
+ version = " 1.6.5 "
4
4
authors = [
5
5
" Stjepan Glavina <[email protected] >" ,
6
6
" Yoshua Wuyts <[email protected] >" ,
Original file line number Diff line number Diff line change 197
197
//!
198
198
//! ```toml
199
199
//! [dependencies.async-std]
200
- //! version = "1.6.4 "
200
+ //! version = "1.6.5 "
201
201
//! features = ["unstable"]
202
202
//! ```
203
203
//!
210
210
//!
211
211
//! ```toml
212
212
//! [dependencies.async-std]
213
- //! version = "1.6.4 "
213
+ //! version = "1.6.5 "
214
214
//! features = ["attributes"]
215
215
//! ```
216
216
//!
219
219
//!
220
220
//! ```toml
221
221
//! [dependencies.async-std]
222
- //! version = "1.6.4 "
222
+ //! version = "1.6.5 "
223
223
//! features = ["tokio02"]
224
224
//! ```
225
225
//!
228
228
//!
229
229
//! ```toml
230
230
//! [dependencies.async-std]
231
- //! version = "1.6.4 "
231
+ //! version = "1.6.5 "
232
232
//! default-features = false
233
233
//! features = ["std"]
234
234
//! ```
238
238
//!
239
239
//! ```toml
240
240
//! [dependencies.async-std]
241
- //! version = "1.6.4 "
241
+ //! version = "1.6.5 "
242
242
//! default-features = false
243
243
//! features = ["alloc"]
244
244
//! ```
You can’t perform that action at this time.
0 commit comments