Skip to content

Commit

Permalink
chore: release v0.3.1 (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
Noah-Kennedy committed Oct 12, 2023
1 parent 2de1d1c commit a9e84ad
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,12 @@
# 0.3.1 (October 12th, 2023)

### Fixed
- task: fix doc error in idle definition ([#54])
- chore: support tokio 1.33 without stats feature ([#55])

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

# 0.3.0 (August 14th, 2023)

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tokio-metrics"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
rust-version = "1.56.0"
authors = ["Tokio Contributors <team@tokio.rs>"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -5,7 +5,7 @@ runtime and per-task metrics.

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

## Getting Started With Task Metrics
Expand Down Expand Up @@ -157,7 +157,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.2.2"
tokio-metrics = "0.3.1"
```

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

0 comments on commit a9e84ad

Please sign in to comment.