From ec15403f59c11b49f8db89293bffd68364fb9c6f Mon Sep 17 00:00:00 2001 From: KRKeegan Date: Fri, 11 Dec 2020 16:19:22 -0800 Subject: [PATCH] Bump 0.7.2 -> 0.7.3 --- .bumpversion.cfg | 2 +- HISTORY.md | 20 +++++++++++++++++++- README.md | 2 +- hassio/config.json | 2 +- insteon_mqtt/__init__.py | 2 +- setup.py | 2 +- 6 files changed, 24 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7a015a38..d89f2a37 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.2 +current_version = 0.7.3 commit = True tag = False diff --git a/HISTORY.md b/HISTORY.md index 4580fe35..b73d121a 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -2,6 +2,9 @@ ## [0.7.3] +Fixing a number of small bugs in preparation for upcoming releases which +will add new features. + ### Additions - Added MQTT broker ID optional config input to allow the user to input the @@ -9,10 +12,21 @@ ### Fixes +- Increase timeout for DB Refresh and allow retry for initial request. + ([PR #237][P237]) + +- Detect disconnections during poll() calls (thanks @kpfleming) ([PR 227][P227]) + +- Modem Responder Group from Thermostat Should be 0x01 ([PR #198][P198]) + ([Issue 154][I154]) + +- Fixed device db find command to check the local group so multiple responsders + can be created. ([Issue #181][I181]) + - Fixed a bug in the modem database class when removing an entry (thanks @krkeegan) ([PR#196][P196]) -- Changed the MQTT remote to never mark messages for retain so the broker +- Changed the MQTT Remote to never mark messages for retain so the broker doesn't get out of sync with the device. ([Issue #I210][I210]) @@ -383,3 +397,7 @@ [P196]: https://github.com/TD22057/insteon-mqtt/pull/196 [I210]: https://github.com/TD22057/insteon-mqtt/issues/210 [P220]: https://github.com/TD22057/insteon-mqtt/pull/220 +[I181]: https://github.com/TD22057/insteon-mqtt/issues/181 +[I154]: https://github.com/TD22057/insteon-mqtt/issues/154 +[P227]: https://github.com/TD22057/insteon-mqtt/pull/227 +[P237]: https://github.com/TD22057/insteon-mqtt/pull/227 diff --git a/README.md b/README.md index b2226daa..1d8d8be3 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ My initial intent with this package is better integrate Insteon into Home Assistant and make it easier and more understandable to add new features and devices. -Version: 0.7.2 ([History](HISTORY.md)) +Version: 0.7.3 ([History](HISTORY.md)) ### Breaking changes from last version: diff --git a/hassio/config.json b/hassio/config.json index 6ce79387..8abec6db 100644 --- a/hassio/config.json +++ b/hassio/config.json @@ -2,7 +2,7 @@ "name": "Insteon MQTT", "description": "Python Insteon PLM <-> MQTT bridge", "slug": "insteon-mqtt", - "version": "0.7.2", + "version": "0.7.3", "startup": "services", "arch": ["amd64","armhf","aarch64","i386"], "boot": "auto", diff --git a/insteon_mqtt/__init__.py b/insteon_mqtt/__init__.py index 8c20c9fe..aa9a07d3 100644 --- a/insteon_mqtt/__init__.py +++ b/insteon_mqtt/__init__.py @@ -10,7 +10,7 @@ For docs, see: https://www.github.com/TD22057/insteon-mqtt """ -__version__ = "0.7.2" +__version__ = "0.7.3" #=========================================================================== diff --git a/setup.py b/setup.py index a5bbf6be..e3d486a8 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name = 'insteon-mqtt', - version = '0.7.2', + version = '0.7.3', description = "Insteon <-> MQTT bridge server", long_description = readme, author = "Ted Drain",