File tree 3 files changed +16
-3
lines changed
3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change
1
+ # 0.4.0 (November 26th, 2024)
2
+
3
+ The core Tokio crate has renamed some of the metrics and this breaking release
4
+ uses the new names. The minimum required Tokio is bumped to 1.41, and the MSRV
5
+ is bumped to 1.70 to match.
6
+
7
+ - runtime: use new names for poll time histogram ([ #66 ] )
8
+ - runtime: rename injection queue to global queue ([ #66 ] )
9
+ - doc: various doc fixes ([ #66 ] , [ #65 ] )
10
+
11
+ [ #65 ] : https://github.com/tokio-rs/tokio-metrics/pull/65
12
+ [ #66 ] : https://github.com/tokio-rs/tokio-metrics/pull/66
13
+
1
14
# 0.3.1 (October 12th, 2023)
2
15
3
16
### Fixed
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " tokio-metrics"
3
- version = " 0.3.1 "
3
+ version = " 0.4.0 "
4
4
edition = " 2021"
5
5
rust-version = " 1.70.0"
6
6
authors = [
" Tokio Contributors <[email protected] >" ]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ runtime and per-task metrics.
5
5
6
6
``` toml
7
7
[dependencies ]
8
- tokio-metrics = { version = " 0.3.1 " , default-features = false }
8
+ tokio-metrics = { version = " 0.4.0 " , default-features = false }
9
9
```
10
10
11
11
## Getting Started With Task Metrics
@@ -157,7 +157,7 @@ The `rt` feature of `tokio-metrics` is on by default; simply check that you do
157
157
not set ` default-features = false ` when declaring it as a dependency; e.g.:
158
158
``` toml
159
159
[dependencies ]
160
- tokio-metrics = " 0.3.1 "
160
+ tokio-metrics = " 0.4.0 "
161
161
```
162
162
163
163
From within a Tokio runtime, use ` RuntimeMonitor ` to monitor key metrics of
You can’t perform that action at this time.
0 commit comments