Skip to content

Commit a9e84ad

Browse files
authored
chore: release v0.3.1 (#56)
1 parent 2de1d1c commit a9e84ad

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 0.3.1 (October 12th, 2023)
2+
3+
### Fixed
4+
- task: fix doc error in idle definition ([#54])
5+
- chore: support tokio 1.33 without stats feature ([#55])
6+
7+
[#54]: https://github.com/tokio-rs/tokio-metrics/pull/54
8+
[#55]: https://github.com/tokio-rs/tokio-metrics/pull/55
9+
110
# 0.3.0 (August 14th, 2023)
211

312
### Added

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tokio-metrics"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2021"
55
rust-version = "1.56.0"
66
authors = ["Tokio Contributors <[email protected]>"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ runtime and per-task metrics.
55

66
```toml
77
[dependencies]
8-
tokio-metrics = { version = "0.3.0", default-features = false }
8+
tokio-metrics = { version = "0.3.1", default-features = false }
99
```
1010

1111
## Getting Started With Task Metrics
@@ -157,7 +157,7 @@ The `rt` feature of `tokio-metrics` is on by default; simply check that you do
157157
not set `default-features = false` when declaring it as a dependency; e.g.:
158158
```toml
159159
[dependencies]
160-
tokio-metrics = "0.2.2"
160+
tokio-metrics = "0.3.1"
161161
```
162162

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

0 commit comments

Comments
 (0)