diff --git a/CHANGELOG.md b/CHANGELOG.md index 099a8e7..b548a59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 0.2.2 (April 13th, 2023) +### Added +- task: add TaskMonitorBuilder ([#46]) + +### Fixed +- task: fix default long delay threshold ([#46]) + +[#46]: https://github.com/tokio-rs/tokio-metrics/pull/46 + # 0.2.1 (April 5th, 2023) ### Added diff --git a/Cargo.toml b/Cargo.toml index 765e821..50d7a1c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokio-metrics" -version = "0.2.1" +version = "0.2.2" edition = "2021" rust-version = "1.56.0" authors = ["Tokio Contributors "] diff --git a/README.md b/README.md index 836946b..05057ce 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ runtime and per-task metrics. ```toml [dependencies] -tokio-metrics = { version = "0.2.1", default-features = false } +tokio-metrics = { version = "0.2.2", default-features = false } ``` ## Getting Started With Task Metrics @@ -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.1" +tokio-metrics = "0.2.2" ``` From within a Tokio runtime, use `RuntimeMonitor` to monitor key metrics of