From a7b4d87e44291b54fc9e1fc2a6272ef6ec0e5654 Mon Sep 17 00:00:00 2001 From: Cyrill Raccaud Date: Sun, 8 Sep 2024 15:05:15 +0200 Subject: [PATCH] > 2.0.3 --- CHANGELOG.md | 5 +++++ docker2mqtt/__init__.py | 2 +- setup.cfg | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 385f2d1..77e1784 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## 2.0.3 + +* Transform the mqtt port cli arg to int as a str is not accepted by the paho.mqtt library +* Fix the container filter not only at startup but also at runtime + ## 2.0.2 * Add version cli options to display package version diff --git a/docker2mqtt/__init__.py b/docker2mqtt/__init__.py index 3224a49..1d7eeec 100644 --- a/docker2mqtt/__init__.py +++ b/docker2mqtt/__init__.py @@ -1,6 +1,6 @@ """docker2mqtt package.""" -__VERSION__ = "2.0.2" +__VERSION__ = "2.0.3" from .const import ( ANSI_ESCAPE, diff --git a/setup.cfg b/setup.cfg index bba12bf..fe15b6f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = docker2mqtt -version = 2.0.2 +version = 2.0.3 author = Cyrill Raccaud author_email = cyrill.raccaud+pypi@gmail.com description = Send your docker stats and and events to mqtt and discovery them in home assistant.