From a9783659bd8ab0951cf671de175468d7ec8bdab6 Mon Sep 17 00:00:00 2001 From: Alexander Thaller Date: Mon, 26 Apr 2021 13:06:09 +0200 Subject: [PATCH] Update changelog and bump version in cargo toml to 0.8.2 --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 023ef3a..44c894a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 0.8.2 + +* ADD: Add function `with_endpoint` to `Builder` that allows to change the +metric endpoint from the default `/metrics`. (thanks @jward-bw) + +## 0.8.1 + +* CHANGE: Update dependency prometheus to version 0.12. +* SECURITY FIX: Update dependency tiny_http to version 0.8. Version 0.7 was vulnerable see #18 for more information [thanks @lapawa]. + ## 0.8 * CHANGE: Update prometheus dependency from 0.10 to 0.11. diff --git a/Cargo.toml b/Cargo.toml index 48575b8..005c93b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prometheus_exporter" -version = "0.8.1" +version = "0.8.2" authors = ["Alexander Thaller "] description = "Helper libary to export prometheus metrics using tiny-http."