Skip to content

Commit 643b678

Browse files
authored
Merge pull request #511 from async-rs/1.0.1
1.0.1
2 parents 54371c2 + b5b2b5a commit 643b678

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
# [1.0.1] - 2019-11-12
11+
12+
We were seeing a regression in our fs performance, caused by too many
13+
long-running tasks. This patch fixes that regression by being more proactive
14+
about closing down idle threads.
15+
16+
## Changes
17+
18+
- Improved thread startup/shutdown algorithm in spawn_blocking.
19+
- Fixed a typo in the tutorial.
20+
1021
# [1.0.0] - 2019-11-11
1122

1223
[API Documentation](https://docs.rs/async-std/1.0.0/async-std)
@@ -429,7 +440,8 @@ task::blocking(async {
429440

430441
- Initial beta release
431442

432-
[Unreleased]: https://github.com/async-rs/async-std/compare/v1.0.0...HEAD
443+
[Unreleased]: https://github.com/async-rs/async-std/compare/v1.0.1...HEAD
444+
[1.0.0]: https://github.com/async-rs/async-std/compare/v1.0.0...v1.0.1
433445
[1.0.0]: https://github.com/async-rs/async-std/compare/v0.99.12...v1.0.0
434446
[0.99.12]: https://github.com/async-rs/async-std/compare/v0.99.11...v0.99.12
435447
[0.99.11]: https://github.com/async-rs/async-std/compare/v0.99.10...v0.99.11

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.0.0"
3+
version = "1.0.1"
44
authors = [
55
"Stjepan Glavina <[email protected]>",
66
"Yoshua Wuyts <[email protected]>",

0 commit comments

Comments
 (0)