Skip to content

Commit

Permalink
Added to changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Victor Nordam Suadicani <v.n.suadicani@gmail.com>
  • Loading branch information
Victor-N-Suadicani committed Jul 14, 2022
1 parent 0eb6318 commit da0f1b5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.17.0] - unreleased

### Added

- Added `Debug` implementations on most public types that were missing them. See [PR 71].

### Changed

- Updates to Rust 2021 Edition. See [PR 65].
Expand All @@ -16,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

[PR 65]: https://github.com/prometheus/client_rust/pull/65
[PR 69]: https://github.com/prometheus/client_rust/pull/69
[PR 71]: https://github.com/prometheus/client_rust/pull/71

## [0.16.0]

Expand Down
1 change: 1 addition & 0 deletions src/metrics/counter.rs
Expand Up @@ -46,6 +46,7 @@ pub struct Counter<N = u64, A = AtomicU64> {
}

#[cfg(any(target_arch = "mips", target_arch = "powerpc"))]
#[derive(Debug)]
pub struct Counter<N = u32, A = AtomicU32> {
value: Arc<A>,
phantom: PhantomData<N>,
Expand Down
1 change: 1 addition & 0 deletions src/metrics/exemplar.rs
Expand Up @@ -37,6 +37,7 @@ pub struct CounterWithExemplar<S, N = u64, A = AtomicU64> {
}

#[cfg(any(target_arch = "mips", target_arch = "powerpc"))]
#[derive(Debug)]
pub struct CounterWithExemplar<S, N = u32, A = AtomicU32> {
pub(crate) inner: Arc<RwLock<CounterWithExemplarInner<S, N, A>>>,
}
Expand Down
1 change: 1 addition & 0 deletions src/metrics/gauge.rs
Expand Up @@ -46,6 +46,7 @@ pub struct Gauge<N = u64, A = AtomicU64> {
}

#[cfg(any(target_arch = "mips", target_arch = "powerpc"))]
#[derive(Debug)]
pub struct Gauge<N = u32, A = AtomicU32> {
value: Arc<A>,
phantom: PhantomData<N>,
Expand Down

0 comments on commit da0f1b5

Please sign in to comment.