Skip to content

Commit 2477056

Browse files
committed
chore: Adjust version number, comment
1 parent b180d33 commit 2477056

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
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+
111
# Version 0.11.0
212

313
## Changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "delay_timer"
3-
version = "0.11.0"
3+
version = "0.11.1"
44
authors = ["binchengZhao <binchengZhao@outlook.com>"]
55
edition = "2018"
66
repository = "https://github.com/BinChengZhao/delay-timer"

src/timer/runtime_trace/task_handle.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,6 @@ impl<T: Send + Sync + 'static> DelayTaskHandler for SmolTask<T> {
284284
}
285285

286286
use tokio::task::JoinHandle;
287-
//TODO:remove debug.
288287
impl<T: Send + Sync + Debug + 'static> DelayTaskHandler for JoinHandle<T> {
289288
fn quit(self: Box<Self>) -> Result<()> {
290289
(*self).abort();

0 commit comments

Comments
 (0)