Skip to content

Commit 87edb1e

Browse files
committed
*: Prepare release candidate 0.10.0-rc.1
1 parent acef86b commit 87edb1e

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## 0.10.0-rc.1
4+
5+
- Improvement: Use different generic parameters for name and help at metric construction (#324).
6+
7+
- Bug fix: Error instead of panic when constructing histogram with unequal label key and label value length (#326).
8+
9+
- Bug fix: Return `Error::AlreadyReg` on duplicate collector registration (#333).
10+
11+
- Bug fix: Make Histogram::observe atomic across collects (#314).
12+
13+
- Internal change: Replace spin with parking_lot (#318).
14+
15+
- Internal change: Optimize metric formatting (#327).
16+
17+
- Internal change: Update parking_lot and procfs dependencies (#337).
18+
319
## 0.9.0
420

521
- Add: Implement `encode` function for summary type metrics.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "Apache-2.0"
99
name = "prometheus"
1010
readme = "README.md"
1111
repository = "https://github.com/tikv/rust-prometheus"
12-
version = "0.9.0"
12+
version = "0.10.0-rc.1"
1313

1414
[badges]
1515
travis-ci = { repository = "pingcap/rust-prometheus" }

static-metric/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ quote = "1.0"
2323
lazy_static = "1.4"
2424

2525
[dev-dependencies]
26-
prometheus = { version = "0.9", path = "../" }
26+
prometheus = { version = "0.10.0-rc.1", path = "../" }
2727

2828
[features]
2929
default = []

0 commit comments

Comments
 (0)