diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f1b8fb90..fa91d8c0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.2 +current_version = 0.8.3 commit = True tag = False diff --git a/README.md b/README.md index b064eefe..6bfbd49d 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ integrated into and controlled from anything that can use MQTT. This package works well with HomeAssistant and can be easily [installed as an addon](docs/HA_Addon_Instructions.md) using the HomeAssistant Supervisor. -Version: 0.8.2 ([History](CHANGELOG.md)) +Version: 0.8.3 ([History](CHANGELOG.md)) ### Recent Breaking Changes diff --git a/config.json b/config.json index a7da3d5b..e63cd027 100644 --- a/config.json +++ b/config.json @@ -2,7 +2,7 @@ "name": "Insteon MQTT", "description": "Creates an MQTT interface to the Insteon protocol.", "slug": "insteon-mqtt", - "version": "0.8.2", + "version": "0.8.3", "startup": "services", "arch": ["amd64","armhf","aarch64","i386"], "boot": "auto", diff --git a/insteon_mqtt/__init__.py b/insteon_mqtt/__init__.py index 03fbfd3e..5429a5a0 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.8.2" +__version__ = "0.8.3" #=========================================================================== diff --git a/setup.py b/setup.py index 77da495f..feafa9e4 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name = 'insteon-mqtt', - version = '0.8.2', + version = '0.8.3', description = "Insteon <-> MQTT bridge server", long_description = readme, author = "Ted Drain",