Skip to content

Commit 787b170

Browse files
committed
chore: Release
1 parent b48ed78 commit 787b170

File tree

14 files changed

+32
-16
lines changed

14 files changed

+32
-16
lines changed

metrics-benchmark/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.22", path = "../metrics" }
17-
metrics-util = { version = "^0.16", path = "../metrics-util" }
16+
metrics = { version = "^0.23", path = "../metrics" }
17+
metrics-util = { version = "^0.17", path = "../metrics-util" }

metrics-exporter-prometheus/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.15.0] - 2024-05-27
12+
1113
### Changed
1214

1315
- Bump MSRV to 1.70.0.

metrics-exporter-prometheus/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "metrics-exporter-prometheus"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
authors = ["Toby Lawrence <toby@nuclearfurnace.com>"]
55
edition = "2018"
66
rust-version = "1.70.0"
@@ -25,8 +25,8 @@ _hyper-server = ["http-body-util", "hyper/server", "hyper-util/server-auto"]
2525
_hyper-client = ["http-body-util", "hyper/client", "hyper-util/client", "hyper-util/http1", "hyper-util/client-legacy", "hyper-tls"]
2626

2727
[dependencies]
28-
metrics = { version = "^0.22", path = "../metrics" }
29-
metrics-util = { version = "^0.16", path = "../metrics-util", default-features = false, features = ["recency", "registry", "summary"] }
28+
metrics = { version = "^0.23", path = "../metrics" }
29+
metrics-util = { version = "^0.17", path = "../metrics-util", default-features = false, features = ["recency", "registry", "summary"] }
3030
thiserror = { version = "1", default-features = false }
3131
quanta = { version = "0.12", default-features = false }
3232
indexmap = { version = "2.1", default-features = false, features = ["std"] }

metrics-exporter-tcp/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.10.0] - 2024-05-27
12+
1113
### Changed
1214

1315
- Bump MSRV to 1.70.0.

metrics-exporter-tcp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "metrics-exporter-tcp"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
authors = ["Toby Lawrence <toby@nuclearfurnace.com>"]
55
edition = "2018"
66
rust-version = "1.70.0"
@@ -17,7 +17,7 @@ categories = ["development-tools::debugging"]
1717
keywords = ["metrics", "telemetry", "tcp"]
1818

1919
[dependencies]
20-
metrics = { version = "^0.22", path = "../metrics" }
20+
metrics = { version = "^0.23", 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/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.4.0] - 2024-05-27
12+
1113
### Changed
1214

1315
- Bump MSRV to 1.70.0.

metrics-observer/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "metrics-observer"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Toby Lawrence <toby@nuclearfurnace.com>"]
55
edition = "2018"
66
rust-version = "1.70.0"
@@ -17,8 +17,8 @@ categories = ["development-tools::debugging"]
1717
keywords = ["metrics", "facade", "macros"]
1818

1919
[dependencies]
20-
metrics = { version = "^0.22", path = "../metrics", default-features = false }
21-
metrics-util = { version = "^0.16", path = "../metrics-util", default-features = false, features = ["summary"] }
20+
metrics = { version = "^0.23", path = "../metrics", default-features = false }
21+
metrics-util = { version = "^0.17", 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"] }
2424
prost = { version = "0.12", default-features = false }

metrics-tracing-context/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.16.0] - 2024-05-27
12+
1113
### Changed
1214

1315
- Bump MSRV to 1.70.0.

metrics-tracing-context/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "metrics-tracing-context"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
authors = ["MOZGIII <mike-n@narod.ru>"]
55
edition = "2018"
66
rust-version = "1.70.0"
@@ -29,8 +29,8 @@ harness = false
2929

3030
[dependencies]
3131
itoa = { version = "1", default-features = false }
32-
metrics = { version = "^0.22", path = "../metrics" }
33-
metrics-util = { version = "^0.16", path = "../metrics-util" }
32+
metrics = { version = "^0.23", path = "../metrics" }
33+
metrics-util = { version = "^0.17", path = "../metrics-util" }
3434
lockfree-object-pool = { version = "0.1.3", default-features = false }
3535
indexmap = { version = "2.1", default-features = false, features = ["std"] }
3636
once_cell = { version = "1", default-features = false, features = ["std"] }

metrics-util/CHANGELOG.md

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

1010
## [Unreleased] - ReleaseDate
1111

12+
## [0.17.0] - 2024-05-27
13+
1214
### Changed
1315

1416
- Bump MSRV to 1.70.0.

0 commit comments

Comments
 (0)