Skip to content

Commit

Permalink
Merge branch 'main' into prom-rolling-summary-buckets
Browse files Browse the repository at this point in the history
  • Loading branch information
cparratto authored Feb 12, 2024
2 parents 739d6ba + 07728f4 commit bd25e22
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 5 deletions.
10 changes: 10 additions & 0 deletions metrics-exporter-prometheus/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased] - ReleaseDate

## [0.13.1] - 2024-02-11

### Added

- A new scrape endpoint path, `/health`, which returns a a basic response to indicate endpoint health. ([#435](https://github.com/metrics-rs/metrics/pull/435))

### Changed

- Bumped the `indexmap` dependency to the latest version. ([#439](https://github.com/metrics-rs/metrics/pull/439))

## [0.13.0] - 2023-12-24

### Added
Expand Down
2 changes: 1 addition & 1 deletion metrics-exporter-prometheus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "metrics-exporter-prometheus"
version = "0.13.0"
version = "0.13.1"
authors = ["Toby Lawrence <[email protected]>"]
edition = "2018"
rust-version = "1.65.0"
Expand Down
12 changes: 12 additions & 0 deletions metrics-util/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased] - ReleaseDate

## [0.16.2] - 2024-02-11

### Fixed

- Lock down the version of `ahash` to avoid unnecessary MSRV bumping.

## [0.16.1] - 2024-02-11

### Changed

- Bumped the `indexmap` and `hashbrown` dependencies to their latest versions. ([#438](https://github.com/metrics-rs/metrics/pull/438), [#439](https://github.com/metrics-rs/metrics/pull/439))

## [0.16.0] - 2023-12-24

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions metrics-util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "metrics-util"
version = "0.16.0"
version = "0.16.2"
authors = ["Toby Lawrence <[email protected]>"]
edition = "2018"
rust-version = "1.65.0"
Expand Down Expand Up @@ -57,7 +57,7 @@ sketches-ddsketch = { version = "0.2", default-features = false, optional = true
radix_trie = { version = "0.2", default-features = false, optional = true }
ordered-float = { version = "4.2", default-features = false, optional = true }
num_cpus = { version = "1", default-features = false, optional = true }
ahash = { version = "0.8", default-features = false, optional = true }
ahash = { version = ">= 0.8, <= 0.8.7", default-features = false, optional = true }
hashbrown = { version = "0.14", default-features = false, optional = true, features = ["ahash"] }

[dev-dependencies]
Expand Down
6 changes: 6 additions & 0 deletions metrics/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased] - ReleaseDate

## [0.22.1] - 2024-02-11

### Fixed

- Lock down the version of `ahash` to avoid unnecessary MSRV bumping.

## [0.22.0] - 2023-12-24

### Added
Expand Down
4 changes: 2 additions & 2 deletions metrics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "metrics"
version = "0.22.0"
version = "0.22.1"
authors = ["Toby Lawrence <[email protected]>"]
edition = "2018"
rust-version = "1.65.0"
Expand All @@ -24,7 +24,7 @@ name = "macros"
harness = false

[dependencies]
ahash = { version = "0.8", default-features = false }
ahash = { version = ">= 0.8, <= 0.8.7", default-features = false }

[target.'cfg(target_pointer_width = "32")'.dependencies]
portable-atomic = { version = "1", default-features = false, features = [
Expand Down
4 changes: 4 additions & 0 deletions metrics/RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ long-form description and would be too verbose for the changelog alone.

- No notable changes.

## [0.22.1] - 2024-02-11

- No notable changes.

## [0.22.0] - 2023-12-24

### Metric metadata
Expand Down

0 comments on commit bd25e22

Please sign in to comment.