File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ license = "Apache-2.0"
99name = " prometheus"
1010readme = " README.md"
1111repository = " https://github.com/tikv/rust-prometheus"
12- version = " 0.9.0 "
12+ version = " 0.10.0-rc.1 "
1313
1414[badges ]
1515travis-ci = { repository = " pingcap/rust-prometheus" }
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ quote = "1.0"
2323lazy_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 ]
2929default = []
You can’t perform that action at this time.
0 commit comments