Skip to content

chore: prepare 0.4.3 #89

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 0.4.3 (July 3rd, 2025)

### Added
- rt: partially stabilize `RuntimeMonitor` and related metrics ([#87])

[#87]: https://github.com/tokio-rs/tokio-metrics/pull/87

# 0.4.2 (April 30th, 2025)

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ runtime and per-task metrics.

```toml
[dependencies]
tokio-metrics = { version = "0.4.2", default-features = false }
tokio-metrics = { version = "0.4.3", default-features = false }
```

## Getting Started With Task Metrics
Expand Down Expand Up @@ -187,7 +187,7 @@ The `rt` feature of `tokio-metrics` is on by default; simply check that you do
not set `default-features = false` when declaring it as a dependency; e.g.:
```toml
[dependencies]
tokio-metrics = "0.4.2"
tokio-metrics = "0.4.3"
```

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

```toml
[dependencies]
tokio-metrics = { version = "0.4.2", features = ["metrics-rs-integration"] }
tokio-metrics = { version = "0.4.3", features = ["metrics-rs-integration"] }
metrics = "0.24"
# You don't actually need to use the Prometheus exporter with uds-listener enabled,
# it's just here as an example.
Expand Down
Loading