All user visible changes to this project will be documented in this file. This project uses Semantic Versioning 2.0.0.
0.8.0 · 2024-10-21
- Upgraded to 0.24 version of
metrics
crate. (7398888c) - Upgraded to 0.18 version of
metrics-util
crate. (7398888c) - Bumped up MSRV to 1.81 because for
#[expect]
attribute usage. (a1192b5d)
0.7.0 · 2024-05-30
- Upgraded to 0.23 version of
metrics
crate. (#11, #10) - Upgraded to 0.17 version of
metrics-util
crate. (#11, #10) - Bumped up MSRV to 1.72 because of newer dependencies versions. (#11, #10)
0.6.0 · 2023-12-25
- Upgraded to 0.22 version of
metrics
crate. (#9) - Upgraded to 0.16 version of
metrics-util
crate. (#9)
0.5.0 · 2023-09-06
- Relicensed from "BlueOak-1.0.0" as "MIT OR Apache-2.0". (f982cbaa, #8)
0.4.1 · 2023-04-25
0.4.0 · 2023-04-17
- Upgraded to 0.21 version of
metrics
crate. (#5) - Upgraded to 0.15 version of
metrics-util
crate. (#5, #6)
0.3.1 · 2023-01-24
build()
,build_freezable()
andbuild_frozen()
methods torecorder::Builder
, allowing to build the resultingmetrics::Recorder
without installing it asmetrics::recorder()
. (#4)
0.3.0 · 2022-12-11
- Switched functions naming convention from
must_*
for panicking totry_*
for fallible. (#1)
storage::Immutable
allow fast access to already registered metrics. (#2)FrozenRecorder
implementation ofmetrics::Recorder
allowing access already registered metrics fast, but unable to register new ones on the fly. (#2)FreezableRecorder
implementation ofmetrics::Recorder
, uniting bothRecorder
andFrozenRecorder
ones. (#2)
0.2.0 · 2022-12-08
storage::Mutable
implementation ofmetrics_util::registry::Storage
backed byprometheus::Registry
and allowing to changehelp
description of already registered metrics. (6a6d4eae)Recorder
implementation ofmetrics::Recorder
allowing metrics creation on the fly. (6a6d4eae)NoOp
,Panic
andPanicInDebugNoOpInRelease
(default)failure::Strategy
s to handle possibleprometheus::Error
s. (6a6d4eae)