Skip to content

Commit 9a16081

Browse files
Merge pull request #845 from async-rs/1-6-3
2 parents d04d769 + a1e83c1 commit 9a16081

File tree

3 files changed

+24
-9
lines changed

3 files changed

+24
-9
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
# [1.6.3] - 2020-07-31
11+
12+
## Added
13+
14+
## Changed
15+
16+
- Switched from smol to individual executor parts. ([#836](https://github.com/async-rs/async-std/pull/836))
17+
- Replaced internal `Mutex` implementation with `async-mutex`. ([#822](https://github.com/async-rs/async-std/pull/822))
18+
19+
## Fixed
20+
21+
- Added missing `Send` guards to `Stream::collect`. ([#665](https://github.com/async-rs/async-std/pull/665))
22+
23+
1024
# [1.6.2] - 2020-06-19
1125

1226
## Added
@@ -746,7 +760,8 @@ task::blocking(async {
746760

747761
- Initial beta release
748762

749-
[Unreleased]: https://github.com/async-rs/async-std/compare/v1.6.2...HEAD
763+
[Unreleased]: https://github.com/async-rs/async-std/compare/v1.6.3...HEAD
764+
[1.6.2]: https://github.com/async-rs/async-std/compare/v1.6.2...v1.6.3
750765
[1.6.2]: https://github.com/async-rs/async-std/compare/v1.6.1...v1.6.2
751766
[1.6.1]: https://github.com/async-rs/async-std/compare/v1.6.0...v1.6.1
752767
[1.6.0]: https://github.com/async-rs/async-std/compare/v1.5.0...v1.6.0

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-std"
3-
version = "1.6.2"
3+
version = "1.6.3"
44
authors = [
55
"Stjepan Glavina <[email protected]>",
66
"Yoshua Wuyts <[email protected]>",
@@ -80,8 +80,8 @@ futures-timer = { version = "3.0.2", optional = true }
8080
surf = { version = "1.0.3", optional = true }
8181

8282
[target.'cfg(not(target_os = "unknown"))'.dependencies]
83-
async-executor = { version = "0.1.1", features = ["async-io"], optional = true }
84-
async-io = { version = "0.1.5", optional = true }
83+
async-executor = { version = "0.1.2", features = ["async-io"], optional = true }
84+
async-io = { version = "0.1.8", optional = true }
8585
blocking = { version = "0.5.0", optional = true }
8686
futures-lite = { version = "0.1.8", optional = true }
8787

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.2"
200+
//! version = "1.6.3"
201201
//! features = ["unstable"]
202202
//! ```
203203
//!
@@ -210,7 +210,7 @@
210210
//!
211211
//! ```toml
212212
//! [dependencies.async-std]
213-
//! version = "1.6.2"
213+
//! version = "1.6.3"
214214
//! features = ["attributes"]
215215
//! ```
216216
//!
@@ -219,7 +219,7 @@
219219
//!
220220
//! ```toml
221221
//! [dependencies.async-std]
222-
//! version = "1.6.2"
222+
//! version = "1.6.3"
223223
//! features = ["tokio02"]
224224
//! ```
225225
//!
@@ -228,7 +228,7 @@
228228
//!
229229
//! ```toml
230230
//! [dependencies.async-std]
231-
//! version = "1.6.2"
231+
//! version = "1.6.3"
232232
//! default-features = false
233233
//! features = ["std"]
234234
//! ```
@@ -238,7 +238,7 @@
238238
//!
239239
//! ```toml
240240
//! [dependencies.async-std]
241-
//! version = "1.6.2"
241+
//! version = "1.6.3"
242242
//! default-features = false
243243
//! features = ["alloc"]
244244
//! ```

0 commit comments

Comments
 (0)