Skip to content

Commit e9c6ea8

Browse files
chore: release v1.6.1
1 parent 0d98aac commit e9c6ea8

File tree

3 files changed

+24
-7
lines changed

3 files changed

+24
-7
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

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+
1026
# [1.6.0] - 2020-05-22
1127

1228
See `1.6.0-beta.1` and `1.6.0-beta.2`.
@@ -716,7 +732,8 @@ task::blocking(async {
716732

717733
- Initial beta release
718734

719-
[Unreleased]: https://github.com/async-rs/async-std/compare/v1.6.0...HEAD
735+
[Unreleased]: https://github.com/async-rs/async-std/compare/v1.6.1...HEAD
736+
[1.6.1]: https://github.com/async-rs/async-std/compare/v1.6.0...v1.6.1
720737
[1.6.0]: https://github.com/async-rs/async-std/compare/v1.5.0...v1.6.0
721738
[1.6.0-beta.2]: https://github.com/async-rs/async-std/compare/v1.6.0-beta.1...v1.6.0-beta.2
722739
[1.6.0-beta.1]: https://github.com/async-rs/async-std/compare/v1.5.0...v1.6.0-beta.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.0"
3+
version = "1.6.1"
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.0"
200+
//! version = "1.6.1"
201201
//! features = ["unstable"]
202202
//! ```
203203
//!
@@ -210,7 +210,7 @@
210210
//!
211211
//! ```toml
212212
//! [dependencies.async-std]
213-
//! version = "1.6.0"
213+
//! version = "1.6.1"
214214
//! features = ["attributes"]
215215
//! ```
216216
//!
@@ -219,7 +219,7 @@
219219
//!
220220
//! ```toml
221221
//! [dependencies.async-std]
222-
//! version = "1.6.0"
222+
//! version = "1.6.1"
223223
//! features = ["tokio02"]
224224
//! ```
225225
//!
@@ -228,7 +228,7 @@
228228
//!
229229
//! ```toml
230230
//! [dependencies.async-std]
231-
//! version = "1.6.0"
231+
//! version = "1.6.1"
232232
//! default-features = false
233233
//! features = ["std"]
234234
//! ```
@@ -238,7 +238,7 @@
238238
//!
239239
//! ```toml
240240
//! [dependencies.async-std]
241-
//! version = "1.6.0"
241+
//! version = "1.6.1"
242242
//! default-features = false
243243
//! features = ["alloc"]
244244
//! ```

0 commit comments

Comments
 (0)