Skip to content

Commit

Permalink
chore: release v0.2.1 (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
Noah-Kennedy committed Apr 5, 2023
1 parent ec6557f commit 7d42d82
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 0.2.1 (April 5th, 2023)

### Added
- task: add short and long delay metrics ([#44])

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

# 0.2.0 (March 6th, 2023)

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

```toml
[dependencies]
tokio-metrics = { version = "0.2.0", default-features = false }
tokio-metrics = { version = "0.2.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.0"
tokio-metrics = "0.2.1"
```

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

0 comments on commit 7d42d82

Please sign in to comment.