Skip to content

Commit c9ecb5b

Browse files
prepare v1.6.0-beta.2
1 parent 9e6a76a commit c9ecb5b

File tree

3 files changed

+20
-8
lines changed

3 files changed

+20
-8
lines changed

CHANGELOG.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,21 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
77

88
## [Unreleased]
99

10+
# [1.6.0-beta.2] - 2020-05-19
11+
12+
## Added
13+
14+
- Added an environment variable to configure the thread pool size of the runtime. ([#774](https://github.com/async-rs/async-std/pull/774))
15+
- Implement `Clone` for `UnixStream` ([#772](https://github.com/async-rs/async-std/pull/772))
16+
1017
## Changed
1118

1219
- 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))
1320

21+
## Fixed
22+
23+
- Use `smol::block_on` to handle drop of `File`, avoiding nested executor panic. ([#768](https://github.com/async-rs/async-std/pull/768))
24+
1425
# [1.6.0-beta.1] - 2020-05-07
1526

1627
## Added
@@ -701,8 +712,9 @@ task::blocking(async {
701712

702713
- Initial beta release
703714

704-
[Unreleased]: https://github.com/async-rs/async-std/compare/v1.5.0...HEAD
705-
[1.6.0-beta.1]: https://github.com/async-rs/async-std/compare/v1.4.0...v1.6.0-beta.1
715+
[Unreleased]: https://github.com/async-rs/async-std/compare/v1.6.0-beta.2...HEAD
716+
[1.6.0-beta.2]: https://github.com/async-rs/async-std/compare/v1.6.0-beta.1...v1.6.0-beta.2
717+
[1.6.0-beta.1]: https://github.com/async-rs/async-std/compare/v1.5.0...v1.6.0-beta.1
706718
[1.5.0]: https://github.com/async-rs/async-std/compare/v1.4.0...v1.5.0
707719
[1.4.0]: https://github.com/async-rs/async-std/compare/v1.3.0...v1.4.0
708720
[1.3.0]: https://github.com/async-rs/async-std/compare/v1.2.0...v1.3.0

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-std"
3-
version = "1.6.0-beta.1"
3+
version = "1.6.0-beta.2"
44
authors = [
55
"Stjepan Glavina <[email protected]>",
66
"Yoshua Wuyts <[email protected]>",
@@ -71,7 +71,7 @@ slab = { version = "0.4.2", optional = true }
7171
surf = { version = "1.0.3", optional = true }
7272

7373
[target.'cfg(not(target_os = "unknown"))'.dependencies]
74-
smol = { version = "0.1.1", optional = true }
74+
smol = { version = "0.1.8", optional = true }
7575

7676
[target.'cfg(target_arch = "wasm32")'.dependencies]
7777
futures-timer = { version = "3.0.2", optional = true, features = ["wasm-bindgen"] }

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194
//!
195195
//! ```toml
196196
//! [dependencies.async-std]
197-
//! version = "1.6.0-beta.1"
197+
//! version = "1.6.0-beta.2"
198198
//! features = ["unstable"]
199199
//! ```
200200
//!
@@ -207,7 +207,7 @@
207207
//!
208208
//! ```toml
209209
//! [dependencies.async-std]
210-
//! version = "1.6.0-beta.1"
210+
//! version = "1.6.0-beta.2"
211211
//! features = ["attributes"]
212212
//! ```
213213
//!
@@ -216,7 +216,7 @@
216216
//!
217217
//! ```toml
218218
//! [dependencies.async-std]
219-
//! version = "1.6.0-beta.1"
219+
//! version = "1.6.0-beta.2"
220220
//! default-features = false
221221
//! features = ["std"]
222222
//! ```
@@ -226,7 +226,7 @@
226226
//!
227227
//! ```toml
228228
//! [dependencies.async-std]
229-
//! version = "1.6.0-beta.1"
229+
//! version = "1.6.0-beta.2"
230230
//! default-features = false
231231
//! features = ["alloc"]
232232
//! ```

0 commit comments

Comments
 (0)