You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+101-1Lines changed: 101 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,101 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
7
7
8
8
## [Unreleased]
9
9
10
+
# [1.6.1] - 2020-06-11
11
+
12
+
## Added
13
+
14
+
- Added `tokio02` feature flag, to allow compatability usage with tokio@0.2 ([#804](https://github.com/async-rs/async-std/pull/804)).
15
+
16
+
## Changed
17
+
18
+
- Removed unstable `stdio` lock methods, due to their unsoundness ([#807](https://github.com/async-rs/async-std/pull/807)).
19
+
20
+
## Fixed
21
+
22
+
- Fixed wrong slice index for file reading ([#802](https://github.com/async-rs/async-std/pull/802)).
23
+
- Fixed recursive calls to `block_on` ([#799](https://github.com/async-rs/async-std/pull/799)) and ([#809](https://github.com/async-rs/async-std/pull/809)).
24
+
- Remove `default` feature requirement for the `unstable` feature ([#806](https://github.com/async-rs/async-std/pull/806)).
25
+
26
+
# [1.6.0] - 2020-05-22
27
+
28
+
See `1.6.0-beta.1` and `1.6.0-beta.2`.
29
+
30
+
# [1.6.0-beta.2] - 2020-05-19
31
+
32
+
## Added
33
+
34
+
- Added an environment variable to configure the thread pool size of the runtime. ([#774](https://github.com/async-rs/async-std/pull/774))
35
+
- Implement `Clone` for `UnixStream` ([#772](https://github.com/async-rs/async-std/pull/772))
36
+
37
+
## Changed
38
+
39
+
- For `wasm`, switched underlying `Timer` implementation to [`futures-timer`](https://github.com/async-rs/futures-timer). ([#776](https://github.com/async-rs/async-std/pull/776))
40
+
41
+
## Fixed
42
+
43
+
- Use `smol::block_on` to handle drop of `File`, avoiding nested executor panic. ([#768](https://github.com/async-rs/async-std/pull/768))
0 commit comments