File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12
12
### Changed
13
13
14
14
- Bump MSRV to 1.70.0.
15
+ - ` Snapshotter ` now implements ` Clone ` .
16
+ ([ #472 ] ( https://github.com/metrics-rs/metrics/pull/472 ) )
17
+ - Relaxed some bounds for different categories of methods on ` Registry<K, S> ` .
18
+ ([ #484 ] ( https://github.com/metrics-rs/metrics/pull/484 ) )
15
19
16
20
## [ 0.16.3] - 2024-03-16
17
21
18
22
### Added
19
23
20
24
- New set of methods on ` Registry ` for getting a metric handle if it exists. ([ #457 ] ( https://github.com/metrics-rs/metrics/pull/457 ) )
21
- - New set of methods on ` Registry ` for retaining metric handles that match a given predicate. ([ #461 ] ( https://github.com/metrics-rs/metrics/pull/461 ) )
25
+ - New set of methods on ` Registry ` for retaining metric handles that match a given predicate.
26
+ ([ #461 ] ( https://github.com/metrics-rs/metrics/pull/461 ) )
22
27
23
28
### Fixed
24
29
Original file line number Diff line number Diff line change @@ -8,9 +8,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
9
9
## [ Unreleased] - ReleaseDate
10
10
11
+ ### Added
12
+
13
+ - Implement ` IntoLabels ` for ` BTreeMap<String, String> ` .
14
+ ([ #470 ] ( https://github.com/metrics-rs/metrics/pull/470 ) )
15
+ - Implement ` From<Cow<'a, T>> ` for ` std::borrow::Cow<'a, T> ` .
16
+ ([ #478 ] ( https://github.com/metrics-rs/metrics/pull/478 ) )
17
+
11
18
### Changed
12
19
13
20
- Bump MSRV to 1.70.0.
21
+ - ` Counter ` , ` Gauge ` , and ` Histogram ` are now marked with ` #[mark_use] ` .
22
+ ([ #475 ] ( https://github.com/metrics-rs/metrics/pull/475 ) )
23
+ - Updated crate-level documentation around how histograms work.
24
+ ([ #477 ] ( https://github.com/metrics-rs/metrics/pull/477 ) )
25
+ - Allow for trailing comma in arguments for all describe macros.
26
+ ([ #483 ] ( https://github.com/metrics-rs/metrics/pull/483 ) )
14
27
15
28
## [ 0.22.3] - 2024-03-16
16
29
You can’t perform that action at this time.
0 commit comments