From 5b32b875df37e5dae19eb0e6b058aa6762778032 Mon Sep 17 00:00:00 2001 From: Luca BRUNO Date: Fri, 5 Mar 2021 11:28:00 +0000 Subject: [PATCH] prometheus: release 0.12.0 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 = []