Skip to content

Commit c020b81

Browse files
arielb1Ariel Ben-Yehuda
andauthored
release 0.4.6 (#102)
Co-authored-by: Ariel Ben-Yehuda <[email protected]>
1 parent 9354757 commit c020b81

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 0.4.6 (December 3rd, 2025)
2+
- add metrics_rs integration to task metrics ([#100])
3+
- readme: add max_idle_duration to readme ([#98])
4+
- readme: keep default features ([#29])
5+
6+
[#29]: https://github.com/tokio-rs/tokio-metrics/pull/29
7+
[#98]: https://github.com/tokio-rs/tokio-metrics/pull/98
8+
[#100]: https://github.com/tokio-rs/tokio-metrics/pull/100
9+
110
# 0.4.5 (September 4th, 2025)
211
- Add max_idle_duration ([#95])
312

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.5"
3+
version = "0.4.6"
44
edition = "2021"
55
rust-version = "1.70.0"
66
authors = ["Tokio Contributors <[email protected]>"]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runtime and per-task metrics.
2222

2323
```toml
2424
[dependencies]
25-
tokio-metrics = "0.4.5"
25+
tokio-metrics = "0.4.6"
2626

2727
```
2828

@@ -191,7 +191,7 @@ The `rt` feature of `tokio-metrics` is on by default; simply check that you do
191191
not set `default-features = false` when declaring it as a dependency; e.g.:
192192
```toml
193193
[dependencies]
194-
tokio-metrics = "0.4.5"
194+
tokio-metrics = "0.4.6"
195195
```
196196

197197
From within a Tokio runtime, use `RuntimeMonitor` to monitor key metrics of
@@ -228,7 +228,7 @@ If you want to use [Prometheus], you could have this `Cargo.toml`:
228228

229229
```toml
230230
[dependencies]
231-
tokio-metrics = { version = "0.4.5", features = ["metrics-rs-integration"] }
231+
tokio-metrics = { version = "0.4.6", features = ["metrics-rs-integration"] }
232232
metrics = "0.24"
233233
# You don't actually need to use the Prometheus exporter with uds-listener enabled,
234234
# it's just here as an example.

0 commit comments

Comments
 (0)