Skip to content

Commit

Permalink
(cargo-release) version 0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tobz committed Jan 15, 2022
1 parent 6284592 commit 81e193e
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 @@ -12,5 +12,5 @@ getopts = "0.2"
hdrhistogram = { version = "7.2", default-features = false }
quanta = "0.9.3"
atomic-shim = "0.2"
metrics = { version = "^0.17", path = "../metrics" }
metrics = { version = "^0.18", path = "../metrics" }
metrics-util = { version = "^0.10", 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 @@ -22,7 +22,7 @@ http-listener = ["async-runtime", "hyper/server", "ipnet"]
push-gateway = ["async-runtime", "hyper/client", "tracing"]

[dependencies]
metrics = { version = "^0.17", path = "../metrics" }
metrics = { version = "^0.18", path = "../metrics" }
metrics-util = { version = "^0.10", path = "../metrics-util", default-features = false, features = ["recency", "registry", "summary"] }
parking_lot = { version = "0.11", default-features = false }
thiserror = { version = "1", 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 @@ -16,7 +16,7 @@ categories = ["development-tools::debugging"]
keywords = ["metrics", "telemetry", "tcp"]

[dependencies]
metrics = { version = "^0.17", path = "../metrics" }
metrics = { version = "^0.18", path = "../metrics" }
bytes = { version = "1", default-features = false }
crossbeam-channel = { version = "0.5", default-features = false, features = ["std"] }
prost = { version = "0.9", 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 @@ -8,7 +8,7 @@ publish = false
license = "MIT"

[dependencies]
metrics = { version = "^0.17", path = "../metrics", default-features = false }
metrics = { version = "^0.18", path = "../metrics", default-features = false }
metrics-util = { version = "^0.10", 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 @@ -28,7 +28,7 @@ harness = false

[dependencies]
itoa = { version = "1", default-features = false }
metrics = { version = "0.17", path = "../metrics" }
metrics = { version = "^0.18", path = "../metrics" }
metrics-util = { version = "0.10", 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 @@ -46,7 +46,7 @@ name = "bucket-crusher"
required-features = ["handles"]

[dependencies]
metrics = { version = "^0.17", path = "../metrics" }
metrics = { version = "^0.18", 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 }
atomic-shim = { version = "0.2", default-features = false, optional = true }
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.18.0] - 2022-01-14

### Added
- A new macro, `absolute_counter!`, for setting the value of a counter to an absolute value.
- A new wrapper type, `KeyName`, which encapsulates creating the name portion of a `Key`. Existing
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.17.1"
version = "0.18.0"
authors = ["Toby Lawrence <[email protected]>"]
edition = "2018"

Expand Down
4 changes: 4 additions & 0 deletions metrics/RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ long-form description and would be too verbose for the changelog alone.

## [Unreleased] - ReleaseDate

- No notable changes.

## [0.18.0] - 2022-01-14

### Switch to metric handles
`metrics` has now switched to "metric handles." This requires a small amount of backstory.

Expand Down

0 comments on commit 81e193e

Please sign in to comment.