Skip to content

Commit

Permalink
Merge pull request #245 from krkeegan/Release0.7.3
Browse files Browse the repository at this point in the history
Bump 0.7.2 -> 0.7.3
  • Loading branch information
krkeegan authored Dec 12, 2020
2 parents e036b3d + ec15403 commit 8aca02d
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.7.2
current_version = 0.7.3
commit = True
tag = False

Expand Down
20 changes: 19 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,31 @@

## [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
MQTT broker ID the client will use (thanks @kpfleming) ([PR #220][P220])

### 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])


Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion hassio/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion insteon_mqtt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
For docs, see: https://www.github.com/TD22057/insteon-mqtt
"""

__version__ = "0.7.2"
__version__ = "0.7.3"

#===========================================================================

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 8aca02d

Please sign in to comment.