Skip to content

Commit

Permalink
(cargo-release) version 0.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tobz committed Dec 24, 2023
1 parent 3b3a991 commit da3edb3
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 @@ -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.21", path = "../metrics" }
metrics = { version = "^0.22", path = "../metrics" }
metrics-util = { version = "0.15", path = "../metrics-util" }
2 changes: 1 addition & 1 deletion metrics-exporter-prometheus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ http-listener = ["async-runtime", "hyper/server", "ipnet"]
push-gateway = ["async-runtime", "hyper/client", "hyper-tls", "tracing"]

[dependencies]
metrics = { version = "^0.21", path = "../metrics" }
metrics = { version = "^0.22", path = "../metrics" }
metrics-util = { version = "^0.15", path = "../metrics-util", default-features = false, features = ["recency", "registry", "summary"] }
thiserror = { version = "1", default-features = false }
quanta = { version = "0.12", default-features = false }
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 @@ -17,7 +17,7 @@ categories = ["development-tools::debugging"]
keywords = ["metrics", "telemetry", "tcp"]

[dependencies]
metrics = { version = "^0.21", path = "../metrics" }
metrics = { version = "^0.22", 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: 1 addition & 1 deletion metrics-observer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ categories = ["development-tools::debugging"]
keywords = ["metrics", "facade", "macros"]

[dependencies]
metrics = { version = "^0.21", path = "../metrics", default-features = false }
metrics = { version = "^0.22", path = "../metrics", default-features = false }
metrics-util = { version = "^0.15", path = "../metrics-util", default-features = false, features = ["summary"] }
bytes = { version = "1", default-features = false }
crossbeam-channel = { version = "0.5", default-features = false, features = ["std"] }
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 @@ -29,7 +29,7 @@ harness = false

[dependencies]
itoa = { version = "1", default-features = false }
metrics = { version = "^0.21", path = "../metrics" }
metrics = { version = "^0.22", path = "../metrics" }
metrics-util = { version = "^0.15", path = "../metrics-util" }
lockfree-object-pool = { version = "0.1.3", default-features = false }
indexmap = { version = "2.1", default-features = false, features = ["std"] }
Expand Down
2 changes: 1 addition & 1 deletion metrics-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ name = "bucket-crusher"
required-features = ["handles"]

[dependencies]
metrics = { version = "^0.21", path = "../metrics" }
metrics = { version = "^0.22", 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.22.0] - 2023-12-24

### Added

- Support for using `Arc<T>` with `Cow<'a, T>`.
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.21.1"
version = "0.22.0"
authors = ["Toby Lawrence <toby@nuclearfurnace.com>"]
edition = "2018"
rust-version = "1.65.0"
Expand Down
4 changes: 4 additions & 0 deletions metrics/RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ long-form description and would be too verbose for the changelog alone.

## [Unreleased] - ReleaseDate

- No notable changes.

## [0.22.0] - 2023-12-24

### Metric metadata

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

0 comments on commit da3edb3

Please sign in to comment.