Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
tobz committed May 27, 2024
1 parent b48ed78 commit 787b170
Show file tree
Hide file tree
Showing 14 changed files with 32 additions and 16 deletions.
4 changes: 2 additions & 2 deletions metrics-benchmark/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 2 additions & 0 deletions metrics-exporter-prometheus/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.15.0] - 2024-05-27

### Changed

- Bump MSRV to 1.70.0.
Expand Down
6 changes: 3 additions & 3 deletions metrics-exporter-prometheus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "metrics-exporter-prometheus"
version = "0.14.0"
version = "0.15.0"
authors = ["Toby Lawrence <[email protected]>"]
edition = "2018"
rust-version = "1.70.0"
Expand All @@ -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"] }
Expand Down
2 changes: 2 additions & 0 deletions metrics-exporter-tcp/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.10.0] - 2024-05-27

### Changed

- Bump MSRV to 1.70.0.
Expand Down
4 changes: 2 additions & 2 deletions metrics-exporter-tcp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "metrics-exporter-tcp"
version = "0.9.0"
version = "0.10.0"
authors = ["Toby Lawrence <[email protected]>"]
edition = "2018"
rust-version = "1.70.0"
Expand All @@ -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 }
Expand Down
2 changes: 2 additions & 0 deletions metrics-observer/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.4.0] - 2024-05-27

### Changed

- Bump MSRV to 1.70.0.
Expand Down
6 changes: 3 additions & 3 deletions metrics-observer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "metrics-observer"
version = "0.3.0"
version = "0.4.0"
authors = ["Toby Lawrence <[email protected]>"]
edition = "2018"
rust-version = "1.70.0"
Expand All @@ -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 }
Expand Down
2 changes: 2 additions & 0 deletions metrics-tracing-context/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.16.0] - 2024-05-27

### Changed

- Bump MSRV to 1.70.0.
Expand Down
6 changes: 3 additions & 3 deletions metrics-tracing-context/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "metrics-tracing-context"
version = "0.15.0"
version = "0.16.0"
authors = ["MOZGIII <[email protected]>"]
edition = "2018"
rust-version = "1.70.0"
Expand Down Expand Up @@ -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"] }
Expand Down
2 changes: 2 additions & 0 deletions metrics-util/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions metrics-util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "metrics-util"
version = "0.16.3"
version = "0.17.0"
authors = ["Toby Lawrence <[email protected]>"]
edition = "2018"
rust-version = "1.70.0"
Expand Down Expand Up @@ -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"] }
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.23.0] - 2024-05-27

### Added

- Implement `IntoLabels` for `BTreeMap<String, String>`.
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.22.3"
version = "0.23.0"
authors = ["Toby Lawrence <[email protected]>"]
edition = "2018"
rust-version = "1.70.0"
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.23.0] - 2024-05-27

- No notable changes.

## [0.22.3] - 2024-03-16

- No notable changes.
Expand Down

0 comments on commit 787b170

Please sign in to comment.