@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
7
7
8
8
## [ Unreleased]
9
9
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
+
10
21
# [ 1.0.0] - 2019年11月11日
11
22
12
23
[ API Documentation] ( https://docs.rs/async-std/1.0.0/async-std )
@@ -429,7 +440,8 @@ task::blocking(async {
429
440
430
441
- Initial beta release
431
442
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
433
445
[ 1.0.0 ] : https://github.com/async-rs/async-std/compare/v0.99.12...v1.0.0
434
446
[ 0.99.12 ] : https://github.com/async-rs/async-std/compare/v0.99.11...v0.99.12
435
447
[ 0.99.11 ] : https://github.com/async-rs/async-std/compare/v0.99.10...v0.99.11
0 commit comments