From de89aae865d5315d08c5d89b52c46764c1981dc4 Mon Sep 17 00:00:00 2001 From: Luca Bruno Date: Fri, 5 Mar 2021 13:44:50 +0000 Subject: [PATCH] prometheus: release 0.12.0 (#397) Signed-off-by: Luca BRUNO --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- static-metric/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83d509f5..459546f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.12.0 + + - Improvement: Fix format string in panic!() calls (#391) + + - Improvement: Replace regex with memchr (#385) + + - Improvement: Update reqwest requirement from ^0.10 to ^0.11 (#379) + ## 0.11.0 - Improvement: Switch to more efficient `fd_count()` for `process_open_fds` (#357). diff --git a/Cargo.toml b/Cargo.toml index 9c6d93df..f68ac11a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" name = "prometheus" readme = "README.md" repository = "https://github.com/tikv/rust-prometheus" -version = "0.11.0" +version = "0.12.0" [badges] travis-ci = { repository = "pingcap/rust-prometheus" } diff --git a/static-metric/Cargo.toml b/static-metric/Cargo.toml index ab58bdaf..d72fcf95 100644 --- a/static-metric/Cargo.toml +++ b/static-metric/Cargo.toml @@ -19,7 +19,7 @@ lazy_static = "1.4" [dev-dependencies] criterion = "0.3" -prometheus = { version = "0.11.0", path = "../" } +prometheus = { path = "../" } [features] default = []