diff --git a/metrics-util/CHANGELOG.md b/metrics-util/CHANGELOG.md index ecf8848f..1ca581a0 100644 --- a/metrics-util/CHANGELOG.md +++ b/metrics-util/CHANGELOG.md @@ -12,13 +12,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Bump MSRV to 1.70.0. +- `Snapshotter` now implements `Clone`. + ([#472](https://github.com/metrics-rs/metrics/pull/472)) +- Relaxed some bounds for different categories of methods on `Registry`. + ([#484](https://github.com/metrics-rs/metrics/pull/484)) ## [0.16.3] - 2024-03-16 ### Added - New set of methods on `Registry` for getting a metric handle if it exists. ([#457](https://github.com/metrics-rs/metrics/pull/457)) -- New set of methods on `Registry` for retaining metric handles that match a given predicate. ([#461](https://github.com/metrics-rs/metrics/pull/461)) +- New set of methods on `Registry` for retaining metric handles that match a given predicate. + ([#461](https://github.com/metrics-rs/metrics/pull/461)) ### Fixed diff --git a/metrics/CHANGELOG.md b/metrics/CHANGELOG.md index bafd18bb..f3dffeb3 100644 --- a/metrics/CHANGELOG.md +++ b/metrics/CHANGELOG.md @@ -8,9 +8,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +### Added + +- Implement `IntoLabels` for `BTreeMap`. + ([#470](https://github.com/metrics-rs/metrics/pull/470)) +- Implement `From>` for `std::borrow::Cow<'a, T>`. + ([#478](https://github.com/metrics-rs/metrics/pull/478)) + ### Changed - Bump MSRV to 1.70.0. +- `Counter`, `Gauge`, and `Histogram` are now marked with `#[mark_use]`. + ([#475](https://github.com/metrics-rs/metrics/pull/475)) +- Updated crate-level documentation around how histograms work. + ([#477](https://github.com/metrics-rs/metrics/pull/477)) +- Allow for trailing comma in arguments for all describe macros. + ([#483](https://github.com/metrics-rs/metrics/pull/483)) ## [0.22.3] - 2024-03-16