From 4ce551d0da6da700f93b79a1ade615d1d57309c7 Mon Sep 17 00:00:00 2001 From: Anand Sanmukhani Date: Wed, 21 Feb 2024 16:21:40 -0500 Subject: [PATCH] Update __init__.py Update package version to 0.5.5 --- 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 3ad04f8..7c20427 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.4" +__version__ = "0.5.5" from .prometheus_connect import * # noqa F403 from .metric import Metric # noqa F401