Skip to content

Commit

Permalink
(cargo-release) version 0.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tobz committed Apr 16, 2023
1 parent 2152daf commit 14876b0
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.11"
portable-atomic = { version = "1", default-features = false, features = ["fallback"] }
metrics = { version = "0.20", path = "../metrics" }
metrics = { version = "^0.21", path = "../metrics" }
metrics-util = { version = "0.14", 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", "tracing"]

[dependencies]
metrics = { version = "0.20", path = "../metrics" }
metrics = { version = "^0.21", path = "../metrics" }
metrics-util = { version = "0.14", path = "../metrics-util", default-features = false, features = ["recency", "registry", "summary"] }
thiserror = { version = "1", default-features = false }
quanta = { version = "0.11", 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.20", path = "../metrics" }
metrics = { version = "^0.21", path = "../metrics" }
bytes = { version = "1", default-features = false }
crossbeam-channel = { version = "0.5", default-features = false, features = ["std"] }
prost = { version = "0.11", 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 @@ -9,7 +9,7 @@ publish = false
license = "MIT"

[dependencies]
metrics = { version = "0.20", path = "../metrics", default-features = false }
metrics = { version = "^0.21", path = "../metrics", default-features = false }
metrics-util = { version = "0.14", 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.20", path = "../metrics" }
metrics = { version = "^0.21", path = "../metrics" }
metrics-util = { version = "0.14", path = "../metrics-util" }
lockfree-object-pool = { version = "0.1.3", default-features = false }
once_cell = { version = "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.20", path = "../metrics" }
metrics = { version = "^0.21", 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 = "0.7", 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.21.0] - 2023-04-16

### Added

- A new module, `atomics`, exposes the atomic integer type that `CounterFn` and `GaugeFn` are
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.20.1"
version = "0.21.0"
authors = ["Toby Lawrence <toby@nuclearfurnace.com>"]
edition = "2018"
rust-version = "1.61.0"
Expand Down
4 changes: 4 additions & 0 deletions metrics/RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ long-form description and would be too verbose for the changelog alone.

- No notable changes.

## [0.21.0] - 2023-04-16

- No notable changes.

## [0.20.1] - 2022-07-22

- No notable changes.
Expand Down

0 comments on commit 14876b0

Please sign in to comment.