Skip to content

Commit da3edb3

Browse files
committed
(cargo-release) version 0.22.0
1 parent 3b3a991 commit da3edb3

File tree

9 files changed

+13
-7
lines changed

9 files changed

+13
-7
lines changed

metrics-benchmark/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ getopts = "0.2"
1313
hdrhistogram = { version = "7.2", default-features = false }
1414
quanta = "0.12"
1515
portable-atomic = { version = "1", default-features = false, features = ["fallback"] }
16-
metrics = { version = "0.21", path = "../metrics" }
16+
metrics = { version = "^0.22", path = "../metrics" }
1717
metrics-util = { version = "0.15", path = "../metrics-util" }

metrics-exporter-prometheus/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ http-listener = ["async-runtime", "hyper/server", "ipnet"]
2323
push-gateway = ["async-runtime", "hyper/client", "hyper-tls", "tracing"]
2424

2525
[dependencies]
26-
metrics = { version = "^0.21", path = "../metrics" }
26+
metrics = { version = "^0.22", path = "../metrics" }
2727
metrics-util = { version = "^0.15", path = "../metrics-util", default-features = false, features = ["recency", "registry", "summary"] }
2828
thiserror = { version = "1", default-features = false }
2929
quanta = { version = "0.12", default-features = false }

metrics-exporter-tcp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ categories = ["development-tools::debugging"]
1717
keywords = ["metrics", "telemetry", "tcp"]
1818

1919
[dependencies]
20-
metrics = { version = "^0.21", path = "../metrics" }
20+
metrics = { version = "^0.22", path = "../metrics" }
2121
bytes = { version = "1", default-features = false }
2222
crossbeam-channel = { version = "0.5", default-features = false, features = ["std"] }
2323
prost = { version = "0.12", default-features = false }

metrics-observer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ categories = ["development-tools::debugging"]
1717
keywords = ["metrics", "facade", "macros"]
1818

1919
[dependencies]
20-
metrics = { version = "^0.21", path = "../metrics", default-features = false }
20+
metrics = { version = "^0.22", path = "../metrics", default-features = false }
2121
metrics-util = { version = "^0.15", path = "../metrics-util", default-features = false, features = ["summary"] }
2222
bytes = { version = "1", default-features = false }
2323
crossbeam-channel = { version = "0.5", default-features = false, features = ["std"] }

metrics-tracing-context/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ harness = false
2929

3030
[dependencies]
3131
itoa = { version = "1", default-features = false }
32-
metrics = { version = "^0.21", path = "../metrics" }
32+
metrics = { version = "^0.22", path = "../metrics" }
3333
metrics-util = { version = "^0.15", path = "../metrics-util" }
3434
lockfree-object-pool = { version = "0.1.3", default-features = false }
3535
indexmap = { version = "2.1", default-features = false, features = ["std"] }

metrics-util/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ name = "bucket-crusher"
4747
required-features = ["handles"]
4848

4949
[dependencies]
50-
metrics = { version = "^0.21", path = "../metrics" }
50+
metrics = { version = "^0.22", path = "../metrics" }
5151
crossbeam-epoch = { version = "0.9.2", default-features = false, optional = true, features = ["alloc", "std"] }
5252
crossbeam-utils = { version = "0.8", default-features = false, optional = true }
5353
aho-corasick = { version = "1", default-features = false, optional = true, features = ["std"] }

metrics/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [Unreleased] - ReleaseDate
1010

11+
## [0.22.0] - 2023-12-24
12+
1113
### Added
1214

1315
- Support for using `Arc<T>` with `Cow<'a, T>`.

metrics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "metrics"
3-
version = "0.21.1"
3+
version = "0.22.0"
44
authors = ["Toby Lawrence <toby@nuclearfurnace.com>"]
55
edition = "2018"
66
rust-version = "1.65.0"

metrics/RELEASES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ long-form description and would be too verbose for the changelog alone.
77

88
## [Unreleased] - ReleaseDate
99

10+
- No notable changes.
11+
12+
## [0.22.0] - 2023-12-24
13+
1014
### Metric metadata
1115

1216
Metrics now support collecting a limited set of metadata field, which can be provided to add context

0 commit comments

Comments
 (0)