Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
tobz committed Oct 12, 2024
1 parent 0bcfe1e commit 3ce7de3
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion metrics-benchmark/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion metrics-exporter-prometheus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion metrics-exporter-tcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion metrics-observer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion metrics-tracing-context/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion metrics-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 2 additions & 0 deletions metrics/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion metrics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "metrics"
version = "0.23.0"
version = "0.24.0"
authors = ["Toby Lawrence <[email protected]>"]
edition = "2018"
rust-version = "1.71.1"
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.24.0] - 2024-10-12

- No notable changes.

## [0.23.0] - 2024-05-27

- No notable changes.
Expand Down

0 comments on commit 3ce7de3

Please sign in to comment.