File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change
1
+ # Version 0.11.1
2
+
3
+ ## Changed
4
+
5
+ - Optimize internal code for better clarity and expression.
6
+
7
+ - Fixed a bug where task execution time is unstable.([ #36 ] ( https://github.com/BinChengZhao/delay-timer/issues/36 ) )
8
+
9
+ ### Details
10
+
1
11
# Version 0.11.0
2
12
3
13
## Changed
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " delay_timer"
3
- version = " 0.11.0 "
3
+ version = " 0.11.1 "
4
4
authors = [" binchengZhao <binchengZhao@outlook.com>" ]
5
5
edition = " 2018"
6
6
repository = " https://github.com/BinChengZhao/delay-timer"
Original file line number Diff line number Diff line change @@ -284,7 +284,6 @@ impl<T: Send + Sync + 'static> DelayTaskHandler for SmolTask<T> {
284
284
}
285
285
286
286
use tokio:: task:: JoinHandle ;
287
- //TODO:remove debug.
288
287
impl < T : Send + Sync + Debug + ' static > DelayTaskHandler for JoinHandle < T > {
289
288
fn quit ( self : Box < Self > ) -> Result < ( ) > {
290
289
( * self ) . abort ( ) ;
You can’t perform that action at this time.
0 commit comments