Skip to content

Commit 9a59d16

Browse files
committed
Prepare 0.11.0 release
1 parent 92c3140 commit 9a59d16

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ All user visible changes to this project will be documented in this file. This p
66

77

88

9-
## main
9+
## [0.11.0] · 2025-03-29
10+
[0.11.0]: https://github.com/instrumentisto/metrics-prometheus-rs/tree/v0.11.0
1011

11-
[Diff](https://github.com/instrumentisto/metrics-prometheus-rs/compare/v0.10.0...main)
12+
[Diff](https://github.com/instrumentisto/metrics-prometheus-rs/compare/v0.10.0...v0.11.0)
1213

1314
### BC Breaks
1415

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "metrics-prometheus"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
edition = "2024"
55
rust-version = "1.85"
66
description = "`prometheus` backend for `metrics` crate."

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[![Rust docs](https://docs.rs/metrics-prometheus/badge.svg "Rust docs")](https://docs.rs/metrics-prometheus)
1111

1212
[API Docs](https://docs.rs/metrics-prometheus) |
13-
[Changelog](https://github.com/instrumentisto/metrics-prometheus-rs/blob/main/CHANGELOG.md)
13+
[Changelog](https://github.com/instrumentisto/metrics-prometheus-rs/blob/v0.11.0/CHANGELOG.md)
1414

1515
[`prometheus`] backend for [`metrics`] crate.
1616

@@ -179,7 +179,7 @@ Since [`prometheus`] crate validates the metrics format very strictly, not every
179179
- Any metric registered in a [`prometheus::Registry`] directly, without using [`metrics`] or this crate interfaces, is not usable via [`metrics`] facade and will cause a [`prometheus::Error`].
180180
```rust,should_panic
181181
metrics_prometheus::install();
182-
182+
183183
prometheus::default_registry()
184184
.register(Box::new(prometheus::Gauge::new("value", "help")?))?;
185185
@@ -267,5 +267,5 @@ Unless you explicitly state otherwise, any contribution intentionally submitted
267267
[Rust]: https://www.rust-lang.org
268268
[VictoriaMetrics]: https://victoriametrics.com
269269

270-
[APACHE]: https://github.com/instrumentisto/metrics-prometheus-rs/blob/main/LICENSE-APACHE
271-
[MIT]: https://github.com/instrumentisto/metrics-prometheus-rs/blob/main/LICENSE-MIT
270+
[APACHE]: https://github.com/instrumentisto/metrics-prometheus-rs/blob/v0.11.0/LICENSE-APACHE
271+
[MIT]: https://github.com/instrumentisto/metrics-prometheus-rs/blob/v0.11.0/LICENSE-MIT

0 commit comments

Comments
 (0)