Skip to content

Commit e1b52c9

Browse files
arielb1Ariel Ben-Yehuda
andauthored
chore: prepare 0.4.1 (#76)
Co-authored-by: Ariel Ben-Yehuda <[email protected]>
1 parent 1b15645 commit e1b52c9

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# 0.4.1 (April 20th, 2025)
2+
3+
### Added
4+
- rt: add support for `blocking_queue_depth`, `live_task_count`, `blocking_threads_count`,
5+
`idle_blocking_threads_count` ([#49], [#74])
6+
- rt: add integration with metrics.rs ([#68])
7+
8+
[#49]: https://github.com/tokio-rs/tokio-metrics/pull/49
9+
[#68]: https://github.com/tokio-rs/tokio-metrics/pull/68
10+
[#74]: https://github.com/tokio-rs/tokio-metrics/pull/74
11+
112
# 0.4.0 (November 26th, 2024)
213

314
The core Tokio crate has renamed some of the metrics and this breaking release

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tokio-metrics"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
edition = "2021"
55
rust-version = "1.70.0"
66
authors = ["Tokio Contributors <[email protected]>"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ runtime and per-task metrics.
55

66
```toml
77
[dependencies]
8-
tokio-metrics = { version = "0.4.0", default-features = false }
8+
tokio-metrics = { version = "0.4.1", default-features = false }
99
```
1010

1111
## Getting Started With Task Metrics
@@ -159,7 +159,7 @@ The `rt` feature of `tokio-metrics` is on by default; simply check that you do
159159
not set `default-features = false` when declaring it as a dependency; e.g.:
160160
```toml
161161
[dependencies]
162-
tokio-metrics = "0.4.0"
162+
tokio-metrics = "0.4.1"
163163
```
164164

165165
From within a Tokio runtime, use `RuntimeMonitor` to monitor key metrics of

0 commit comments

Comments
 (0)