From 787b1703ae3f2f02bf6add97764466ee06cc2630 Mon Sep 17 00:00:00 2001 From: Toby Lawrence Date: Mon, 27 May 2024 17:37:02 +0000 Subject: [PATCH] chore: Release --- metrics-benchmark/Cargo.toml | 4 ++-- metrics-exporter-prometheus/CHANGELOG.md | 2 ++ metrics-exporter-prometheus/Cargo.toml | 6 +++--- metrics-exporter-tcp/CHANGELOG.md | 2 ++ metrics-exporter-tcp/Cargo.toml | 4 ++-- metrics-observer/CHANGELOG.md | 2 ++ metrics-observer/Cargo.toml | 6 +++--- metrics-tracing-context/CHANGELOG.md | 2 ++ metrics-tracing-context/Cargo.toml | 6 +++--- metrics-util/CHANGELOG.md | 2 ++ metrics-util/Cargo.toml | 4 ++-- metrics/CHANGELOG.md | 2 ++ metrics/Cargo.toml | 2 +- metrics/RELEASES.md | 4 ++++ 14 files changed, 32 insertions(+), 16 deletions(-) diff --git a/metrics-benchmark/Cargo.toml b/metrics-benchmark/Cargo.toml index f7e5d45a..e2d0291c 100644 --- a/metrics-benchmark/Cargo.toml +++ b/metrics-benchmark/Cargo.toml @@ -13,5 +13,5 @@ getopts = "0.2" hdrhistogram = { version = "7.2", default-features = false } quanta = "0.12" portable-atomic = { version = "1", default-features = false, features = ["fallback"] } -metrics = { version = "^0.22", path = "../metrics" } -metrics-util = { version = "^0.16", path = "../metrics-util" } +metrics = { version = "^0.23", path = "../metrics" } +metrics-util = { version = "^0.17", path = "../metrics-util" } diff --git a/metrics-exporter-prometheus/CHANGELOG.md b/metrics-exporter-prometheus/CHANGELOG.md index ec452c9d..f5fe2713 100644 --- a/metrics-exporter-prometheus/CHANGELOG.md +++ b/metrics-exporter-prometheus/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.15.0] - 2024-05-27 + ### Changed - Bump MSRV to 1.70.0. diff --git a/metrics-exporter-prometheus/Cargo.toml b/metrics-exporter-prometheus/Cargo.toml index c486651f..f1f4c700 100644 --- a/metrics-exporter-prometheus/Cargo.toml +++ b/metrics-exporter-prometheus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "metrics-exporter-prometheus" -version = "0.14.0" +version = "0.15.0" authors = ["Toby Lawrence "] edition = "2018" rust-version = "1.70.0" @@ -25,8 +25,8 @@ _hyper-server = ["http-body-util", "hyper/server", "hyper-util/server-auto"] _hyper-client = ["http-body-util", "hyper/client", "hyper-util/client", "hyper-util/http1", "hyper-util/client-legacy", "hyper-tls"] [dependencies] -metrics = { version = "^0.22", path = "../metrics" } -metrics-util = { version = "^0.16", path = "../metrics-util", default-features = false, features = ["recency", "registry", "summary"] } +metrics = { version = "^0.23", path = "../metrics" } +metrics-util = { version = "^0.17", path = "../metrics-util", default-features = false, features = ["recency", "registry", "summary"] } thiserror = { version = "1", default-features = false } quanta = { version = "0.12", default-features = false } indexmap = { version = "2.1", default-features = false, features = ["std"] } diff --git a/metrics-exporter-tcp/CHANGELOG.md b/metrics-exporter-tcp/CHANGELOG.md index f99f653d..2aeb41a2 100644 --- a/metrics-exporter-tcp/CHANGELOG.md +++ b/metrics-exporter-tcp/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.10.0] - 2024-05-27 + ### Changed - Bump MSRV to 1.70.0. diff --git a/metrics-exporter-tcp/Cargo.toml b/metrics-exporter-tcp/Cargo.toml index b3b5fa15..893df569 100644 --- a/metrics-exporter-tcp/Cargo.toml +++ b/metrics-exporter-tcp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "metrics-exporter-tcp" -version = "0.9.0" +version = "0.10.0" authors = ["Toby Lawrence "] edition = "2018" rust-version = "1.70.0" @@ -17,7 +17,7 @@ categories = ["development-tools::debugging"] keywords = ["metrics", "telemetry", "tcp"] [dependencies] -metrics = { version = "^0.22", path = "../metrics" } +metrics = { version = "^0.23", path = "../metrics" } bytes = { version = "1", default-features = false } crossbeam-channel = { version = "0.5", default-features = false, features = ["std"] } prost = { version = "0.12", default-features = false } diff --git a/metrics-observer/CHANGELOG.md b/metrics-observer/CHANGELOG.md index 9150a849..7c811932 100644 --- a/metrics-observer/CHANGELOG.md +++ b/metrics-observer/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.4.0] - 2024-05-27 + ### Changed - Bump MSRV to 1.70.0. diff --git a/metrics-observer/Cargo.toml b/metrics-observer/Cargo.toml index d667e235..57df5494 100644 --- a/metrics-observer/Cargo.toml +++ b/metrics-observer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "metrics-observer" -version = "0.3.0" +version = "0.4.0" authors = ["Toby Lawrence "] edition = "2018" rust-version = "1.70.0" @@ -17,8 +17,8 @@ categories = ["development-tools::debugging"] keywords = ["metrics", "facade", "macros"] [dependencies] -metrics = { version = "^0.22", path = "../metrics", default-features = false } -metrics-util = { version = "^0.16", path = "../metrics-util", default-features = false, features = ["summary"] } +metrics = { version = "^0.23", path = "../metrics", default-features = false } +metrics-util = { version = "^0.17", path = "../metrics-util", default-features = false, features = ["summary"] } bytes = { version = "1", default-features = false } crossbeam-channel = { version = "0.5", default-features = false, features = ["std"] } prost = { version = "0.12", default-features = false } diff --git a/metrics-tracing-context/CHANGELOG.md b/metrics-tracing-context/CHANGELOG.md index d29f7642..84d2247b 100644 --- a/metrics-tracing-context/CHANGELOG.md +++ b/metrics-tracing-context/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.16.0] - 2024-05-27 + ### Changed - Bump MSRV to 1.70.0. diff --git a/metrics-tracing-context/Cargo.toml b/metrics-tracing-context/Cargo.toml index 3e9f6333..1397ee4b 100644 --- a/metrics-tracing-context/Cargo.toml +++ b/metrics-tracing-context/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "metrics-tracing-context" -version = "0.15.0" +version = "0.16.0" authors = ["MOZGIII "] edition = "2018" rust-version = "1.70.0" @@ -29,8 +29,8 @@ harness = false [dependencies] itoa = { version = "1", default-features = false } -metrics = { version = "^0.22", path = "../metrics" } -metrics-util = { version = "^0.16", path = "../metrics-util" } +metrics = { version = "^0.23", path = "../metrics" } +metrics-util = { version = "^0.17", path = "../metrics-util" } lockfree-object-pool = { version = "0.1.3", default-features = false } indexmap = { version = "2.1", default-features = false, features = ["std"] } once_cell = { version = "1", default-features = false, features = ["std"] } diff --git a/metrics-util/CHANGELOG.md b/metrics-util/CHANGELOG.md index 1ca581a0..e9f80d21 100644 --- a/metrics-util/CHANGELOG.md +++ b/metrics-util/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.17.0] - 2024-05-27 + ### Changed - Bump MSRV to 1.70.0. diff --git a/metrics-util/Cargo.toml b/metrics-util/Cargo.toml index f4164bf7..2dc71a5e 100644 --- a/metrics-util/Cargo.toml +++ b/metrics-util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "metrics-util" -version = "0.16.3" +version = "0.17.0" authors = ["Toby Lawrence "] edition = "2018" rust-version = "1.70.0" @@ -47,7 +47,7 @@ name = "bucket-crusher" required-features = ["handles"] [dependencies] -metrics = { version = "^0.22", path = "../metrics" } +metrics = { version = "^0.23", path = "../metrics" } crossbeam-epoch = { version = "0.9.2", default-features = false, optional = true, features = ["alloc", "std"] } crossbeam-utils = { version = "0.8", default-features = false, optional = true } aho-corasick = { version = "1", default-features = false, optional = true, features = ["std"] } diff --git a/metrics/CHANGELOG.md b/metrics/CHANGELOG.md index f3dffeb3..1ffdec5a 100644 --- a/metrics/CHANGELOG.md +++ b/metrics/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.23.0] - 2024-05-27 + ### Added - Implement `IntoLabels` for `BTreeMap`. diff --git a/metrics/Cargo.toml b/metrics/Cargo.toml index 0aa4e927..8c22bbdc 100644 --- a/metrics/Cargo.toml +++ b/metrics/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "metrics" -version = "0.22.3" +version = "0.23.0" authors = ["Toby Lawrence "] edition = "2018" rust-version = "1.70.0" diff --git a/metrics/RELEASES.md b/metrics/RELEASES.md index 11b4d8c7..3c62c122 100644 --- a/metrics/RELEASES.md +++ b/metrics/RELEASES.md @@ -9,6 +9,10 @@ long-form description and would be too verbose for the changelog alone. - No notable changes. +## [0.23.0] - 2024-05-27 + +- No notable changes. + ## [0.22.3] - 2024-03-16 - No notable changes.