From a3e2cde7419ba97224f7374641b90c77bec15b9b Mon Sep 17 00:00:00 2001 From: Anand Sanmukhani Date: Wed, 8 Jun 2022 17:09:48 -0400 Subject: [PATCH] Update __init__.py Update version number to `0.5.1` --- prometheus_api_client/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prometheus_api_client/__init__.py b/prometheus_api_client/__init__.py index 8903072..f7bfe00 100644 --- a/prometheus_api_client/__init__.py +++ b/prometheus_api_client/__init__.py @@ -1,7 +1,7 @@ """A collection of tools to collect and manipulate prometheus metrics.""" __title__ = "prometheus-connect" -__version__ = "0.5.0" +__version__ = "0.5.1" from .prometheus_connect import * # noqa F403 from .metric import Metric # noqa F401