From 6f473a23cfa1b69f716bb926e402df187346d26c Mon Sep 17 00:00:00 2001 From: KRKeegan Date: Sun, 16 May 2021 11:33:41 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.9.0=20=E2=86=92=200.9.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.md | 2 +- config.json | 2 +- insteon_mqtt/const.py | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6841bde2..8e6d253a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.0 +current_version = 0.9.1 commit = True tag = False diff --git a/README.md b/README.md index b99504b6..5eb15158 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.9.0 ([History](CHANGELOG.md)) +Version: 0.9.1 ([History](CHANGELOG.md)) ### Recent Breaking Changes diff --git a/config.json b/config.json index a8e7d5e8..9c0ee536 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.9.0", + "version": "0.9.1", "startup": "services", "arch": ["amd64","armhf","aarch64","i386"], "boot": "auto", diff --git a/insteon_mqtt/const.py b/insteon_mqtt/const.py index 607b4b9e..436dce70 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.9.0" +__version__ = "0.9.1" #=========================================================================== diff --git a/setup.py b/setup.py index 0f19a520..b85779b5 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name = 'insteon-mqtt', - version = '0.9.0', + version = '0.9.1', description = "Insteon <-> MQTT bridge server", long_description = readme, author = "Ted Drain",