diff --git a/metrics-benchmark/Cargo.toml b/metrics-benchmark/Cargo.toml index 8a8ca6e0..1b75b941 100644 --- a/metrics-benchmark/Cargo.toml +++ b/metrics-benchmark/Cargo.toml @@ -10,7 +10,7 @@ publish = false getopts = { workspace = true } hdrhistogram = { workspace = true } log = { workspace = true } -metrics = { version = "^0.23", path = "../metrics" } +metrics = { version = "^0.24", path = "../metrics" } metrics-util = { version = "^0.17", path = "../metrics-util" } portable-atomic = { workspace = true, features = ["fallback"] } pretty_env_logger = { workspace = true } diff --git a/metrics-exporter-prometheus/Cargo.toml b/metrics-exporter-prometheus/Cargo.toml index 9b04586c..072933b5 100644 --- a/metrics-exporter-prometheus/Cargo.toml +++ b/metrics-exporter-prometheus/Cargo.toml @@ -42,7 +42,7 @@ hyper-rustls = { workspace = true, optional = true } hyper-util = { workspace = true, optional = true } indexmap = { workspace = true } ipnet = { workspace = true, optional = true } -metrics = { version = "^0.23", path = "../metrics" } +metrics = { version = "^0.24", path = "../metrics" } metrics-util = { version = "^0.17", path = "../metrics-util", default-features = false, features = [ "recency", "registry", diff --git a/metrics-exporter-tcp/Cargo.toml b/metrics-exporter-tcp/Cargo.toml index 6f2732a1..448a850a 100644 --- a/metrics-exporter-tcp/Cargo.toml +++ b/metrics-exporter-tcp/Cargo.toml @@ -19,7 +19,7 @@ keywords = ["metrics", "telemetry", "tcp"] [dependencies] bytes = { workspace = true } crossbeam-channel = { workspace = true, features = ["std"] } -metrics = { version = "^0.23", path = "../metrics" } +metrics = { version = "^0.24", path = "../metrics" } mio = { workspace = true, features = ["os-poll", "net"] } prost = { workspace = true } prost-types = { workspace = true, features = ["std"] } diff --git a/metrics-observer/Cargo.toml b/metrics-observer/Cargo.toml index 81f579da..10a60ad7 100644 --- a/metrics-observer/Cargo.toml +++ b/metrics-observer/Cargo.toml @@ -20,7 +20,7 @@ keywords = ["metrics", "facade", "macros"] bytes = { workspace = true } chrono = { workspace = true, features = ["clock"] } crossbeam-channel = { workspace = true, features = ["std"] } -metrics = { version = "^0.23", path = "../metrics", default-features = false } +metrics = { version = "^0.24", path = "../metrics", default-features = false } metrics-util = { version = "^0.17", path = "../metrics-util", default-features = false, features = ["summary"] } prost = { workspace = true } prost-types = { workspace = true } diff --git a/metrics-tracing-context/Cargo.toml b/metrics-tracing-context/Cargo.toml index f8da4b95..53da913f 100644 --- a/metrics-tracing-context/Cargo.toml +++ b/metrics-tracing-context/Cargo.toml @@ -31,7 +31,7 @@ harness = false indexmap = { workspace = true } itoa = { workspace = true } lockfree-object-pool = { workspace = true } -metrics = { version = "^0.23", path = "../metrics" } +metrics = { version = "^0.24", path = "../metrics" } metrics-util = { version = "^0.17", path = "../metrics-util" } once_cell = { workspace = true } tracing = { workspace = true } diff --git a/metrics-util/Cargo.toml b/metrics-util/Cargo.toml index 6fdb97d0..300dccd4 100644 --- a/metrics-util/Cargo.toml +++ b/metrics-util/Cargo.toml @@ -53,7 +53,7 @@ crossbeam-epoch = { workspace = true, features = ["alloc", "std"], optional = tr crossbeam-utils = { workspace = true, optional = true } hashbrown = { workspace = true, optional = true } indexmap = { workspace = true, optional = true } -metrics = { version = "^0.23", path = "../metrics" } +metrics = { version = "^0.24", path = "../metrics" } ordered-float = { workspace = true, optional = true } quanta = { workspace = true, optional = true } radix_trie = { workspace = true, optional = true } diff --git a/metrics/CHANGELOG.md b/metrics/CHANGELOG.md index ce716583..efed1e8e 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.24.0] - 2024-10-12 + ### Added - Added `Debug` derive to numerous types. ([#504](https://github.com/metrics-rs/metrics/pull/504)) diff --git a/metrics/Cargo.toml b/metrics/Cargo.toml index bedc7fd2..82062660 100644 --- a/metrics/Cargo.toml +++ b/metrics/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "metrics" -version = "0.23.0" +version = "0.24.0" authors = ["Toby Lawrence "] edition = "2018" rust-version = "1.71.1" diff --git a/metrics/RELEASES.md b/metrics/RELEASES.md index 3c62c122..9ab31a98 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.24.0] - 2024-10-12 + +- No notable changes. + ## [0.23.0] - 2024-05-27 - No notable changes.