diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 50177054..6841bde2 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.3 +current_version = 0.9.0 commit = True tag = False diff --git a/README.md b/README.md index 6bfbd49d..8f262f62 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.3 ([History](CHANGELOG.md)) +Version: 0.9.0 ([History](CHANGELOG.md)) ### Recent Breaking Changes diff --git a/config.json b/config.json index e63cd027..a8e7d5e8 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.3", + "version": "0.9.0", "startup": "services", "arch": ["amd64","armhf","aarch64","i386"], "boot": "auto", diff --git a/insteon_mqtt/const.py b/insteon_mqtt/const.py index f7e8cb5e..607b4b9e 100644 --- a/insteon_mqtt/const.py +++ b/insteon_mqtt/const.py @@ -11,6 +11,6 @@ variable throughout the code without causing a cyclic import """ -__version__ = "0.8.3" +__version__ = "0.9.0" #=========================================================================== diff --git a/setup.py b/setup.py index feafa9e4..fb27eaf2 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name = 'insteon-mqtt', - version = '0.8.3', + version = '0.9.0', description = "Insteon <-> MQTT bridge server", long_description = readme, author = "Ted Drain",