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-1
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 [email protected] ([#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))
- Added `sync::Sender::try_send` and `sync::Receiver::try_recv` ([#585](https://github.com/async-rs/async-std/pull/585))
54
+
- Added `no_std` support for `task`, `future` and `stream` ([#680](https://github.com/async-rs/async-std/pull/680))
55
+
56
+
## Changed
57
+
58
+
- Switched underlying runtime to [`smol`](https://github.com/stjepang/smol/). ([#757](https://github.com/async-rs/async-std/pull/757))
59
+
- Switched implementation of `sync::Barrier` to use `sync::Condvar` like `std` does. ([#581](https://github.com/async-rs/async-std/pull/581))
60
+
61
+
## Fixed
62
+
63
+
- Allow compilation on 32 bit targets, by using `AtomicUsize` for `TaskId`. ([#756](https://github.com/async-rs/async-std/pull/756))
This patch includes various quality of life improvements to async-std.
70
+
Including improved performance, stability, and the addition of various
71
+
`Clone` impls that replace the use of `Arc` in many cases.
72
+
73
+
## Added
74
+
75
+
- Added links to various ecosystem projects from the README ([#660](https://github.com/async-rs/async-std/pull/660))
76
+
- Added an example on `FromStream` for `Result<T, E>` ([#643](https://github.com/async-rs/async-std/pull/643))
77
+
- Added `stream::pending` as "unstable" ([#615](https://github.com/async-rs/async-std/pull/615))
78
+
- Added an example of `stream::timeout` to document the error flow ([#675](https://github.com/async-rs/async-std/pull/675))
79
+
- Implement `Clone` for `DirEntry` ([#682](https://github.com/async-rs/async-std/pull/682))
80
+
- Implement `Clone` for `TcpStream` ([#689](https://github.com/async-rs/async-std/pull/689))
81
+
82
+
## Changed
83
+
84
+
- Removed internal comment on `stream::Interval` ([#645](https://github.com/async-rs/async-std/pull/645))
85
+
- The "unstable" feature can now be used without requiring the "default" feature ([#647](https://github.com/async-rs/async-std/pull/647))
86
+
- Removed unnecessary trait bound on `stream::FlatMap` ([#651](https://github.com/async-rs/async-std/pull/651))
87
+
- Updated the "broadcaster" dependency used by "unstable" to `1.0.0` ([#681](https://github.com/async-rs/async-std/pull/681))
88
+
- Updated `async-task` to 1.2.1 ([#676](https://github.com/async-rs/async-std/pull/676))
89
+
-`task::block_on` now parks after a single poll, improving performance in many cases ([#684](https://github.com/async-rs/async-std/pull/684))
90
+
- Improved reading flow of the "client" part of the async-std tutorial ([#550](https://github.com/async-rs/async-std/pull/550))
91
+
- Use `take_while` instead of `scan` in `impl` of `Product`, `Sum` and `FromStream` ([#667](https://github.com/async-rs/async-std/pull/667))
92
+
-`TcpStream::connect` no longer uses a thread from the threadpool, improving performance ([#687](https://github.com/async-rs/async-std/pull/687))
- Fixed documentation for `UdpSocket::recv` ([#648](https://github.com/async-rs/async-std/pull/648))
98
+
- Fixed documentation for `UdpSocket::send` ([#671](https://github.com/async-rs/async-std/pull/671))
99
+
- Fixed typo in stream documentation ([#650](https://github.com/async-rs/async-std/pull/650))
100
+
- Fixed typo on `sync::JoinHandle` documentation ([#659](https://github.com/async-rs/async-std/pull/659))
101
+
- Removed use of `std::error::Error::description` which failed CI ([#661](https://github.com/async-rs/async-std/pull/662))
102
+
- Removed the use of rustfmt's unstable `format_code_in_doc_comments` option which failed CI ([#685](https://github.com/async-rs/async-std/pull/685))
103
+
- Fixed a code typo in the `task::sleep` example ([#688](https://github.com/async-rs/async-std/pull/688))
0 commit comments