File tree
Expand file treeCollapse file tree3 files changed
+24
-7
lines changed Expand file treeCollapse file tree3 files changed
+24
-7
lines changed Original file line number | Diff line number | Diff line change |
---|
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
|
7 | 7 |
|
8 | 8 | ## []
|
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://.com/async-rs/async-std/pull/804)). |
| 15 | + |
| 16 | +## Changed |
| 17 | + |
| 18 | +- Removed unstable `stdio` lock methods, due to their unsoundness ([#807](https://.com/async-rs/async-std/pull/807)). |
| 19 | + |
| 20 | +## Fixed |
| 21 | + |
| 22 | +- Fixed wrong slice index for file reading ([#802](https://.com/async-rs/async-std/pull/802)). |
| 23 | +- Fixed recursive calls to `block_on` ([#799](https://.com/async-rs/async-std/pull/799)) and ([#809](https://.com/async-rs/async-std/pull/809)). |
| 24 | +- Remove `default` feature requirement for the `unstable` feature ([#806](https://.com/async-rs/async-std/pull/806)). |
| 25 | + |
10 | 26 | # [1.6.0] - 2020-05-22
|
11 | 27 |
|
12 | 28 | See `1.6.0-beta.1` and `1.6.0-beta.2`.
|
@@ -716,7 +732,8 @@ task::blocking(async {
|
716 | 732 |
|
717 | 733 | - Initial beta release
|
718 | 734 |
|
719 |
| -[]: https://.com/async-rs/async-std/compare/v1.6.0...HEAD |
| 735 | +[]: https://.com/async-rs/async-std/compare/v1.6.1...HEAD |
| 736 | +[1.6.1]: https://.com/async-rs/async-std/compare/v1.6.0...v1.6.1 |
720 | 737 | [1.6.0]: https://.com/async-rs/async-std/compare/v1.5.0...v1.6.0
|
721 | 738 | [1.6.0-beta.2]: https://.com/async-rs/async-std/compare/v1.6.0-beta.1...v1.6.0-beta.2
|
722 | 739 | [1.6.0-beta.1]: https://.com/async-rs/async-std/compare/v1.5.0...v1.6.0-beta.1
|
|
Original file line number | Diff line number | Diff line change |
---|
|
1 | 1 | [package]
|
2 | 2 | name = "async-std"
|
3 |
| -version = "1.6.0" |
| 3 | +version = "1.6.1" |
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.0" |
| 200 | +//! version = "1.6.1" |
201 | 201 | //! features = ["unstable"]
|
202 | 202 | //! ```
|
203 | 203 | //!
|
|
210 | 210 | //!
|
211 | 211 | //! ```toml
|
212 | 212 | //! [dependencies.async-std]
|
213 |
| -//! version = "1.6.0" |
| 213 | +//! version = "1.6.1" |
214 | 214 | //! features = ["attributes"]
|
215 | 215 | //! ```
|
216 | 216 | //!
|
|
219 | 219 | //!
|
220 | 220 | //! ```toml
|
221 | 221 | //! [dependencies.async-std]
|
222 |
| -//! version = "1.6.0" |
| 222 | +//! version = "1.6.1" |
223 | 223 | //! features = ["tokio02"]
|
224 | 224 | //! ```
|
225 | 225 | //!
|
|
228 | 228 | //!
|
229 | 229 | //! ```toml
|
230 | 230 | //! [dependencies.async-std]
|
231 |
| -//! version = "1.6.0" |
| 231 | +//! version = "1.6.1" |
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.0" |
| 241 | +//! version = "1.6.1" |
242 | 242 | //! default-features = false
|
243 | 243 | //! features = ["alloc"]
|
244 | 244 | //! ```
|
|
You can’t perform that action at this time.
0 commit comments