From a9e84ad80616df6ca74a46c1a51ee9e8b43adc4e Mon Sep 17 00:00:00 2001 From: Noah Kennedy Date: Thu, 12 Oct 2023 17:26:12 -0500 Subject: [PATCH] chore: release v0.3.1 (#56) --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- README.md | 4 ++-- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6378f62..25e26bb 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/Cargo.toml b/Cargo.toml index 33f8d2e..b368b68 100644 --- a/Cargo.toml +++ b/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 "] diff --git a/README.md b/README.md index 9feddba..18057f0 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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