Skip to content

Commit

Permalink
*: Prepare release candidate 0.10.0-rc.1 (#340)
Browse files Browse the repository at this point in the history
* static/metrics/Cargo.toml: Bump version to 0.5.0-rc.1

Signed-off-by: Max Inden <mail@max-inden.de>
  • Loading branch information
mxinden authored Aug 26, 2020
1 parent acef86b commit 849b108
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 0.10.0-rc.1

- Improvement: Use different generic parameters for name and help at metric construction (#324).

- Bug fix: Error instead of panic when constructing histogram with unequal label key and label value length (#326).

- Bug fix: Return `Error::AlreadyReg` on duplicate collector registration (#333).

- Bug fix: Make Histogram::observe atomic across collects (#314).

- Internal change: Replace spin with parking_lot (#318).

- Internal change: Optimize metric formatting (#327).

- Internal change: Update parking_lot and procfs dependencies (#337).

## 0.9.0

- Add: Implement `encode` function for summary type metrics.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "Apache-2.0"
name = "prometheus"
readme = "README.md"
repository = "https://github.com/tikv/rust-prometheus"
version = "0.9.0"
version = "0.10.0-rc.1"

[badges]
travis-ci = { repository = "pingcap/rust-prometheus" }
Expand Down
4 changes: 2 additions & 2 deletions static-metric/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "prometheus-static-metric"
version = "0.4.0"
version = "0.5.0-rc.1"
license = "Apache-2.0"
authors = ["me@breeswish.org"]
description = "Static metric helper utilities for rust-prometheus."
Expand All @@ -23,7 +23,7 @@ quote = "1.0"
lazy_static = "1.4"

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

[features]
default = []

0 comments on commit 849b108

Please sign in to comment.