diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8847bc8e..c41ca078 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.1 +current_version = 1.2.0 commit = True tag = False diff --git a/README.md b/README.md index d73103a8..f4c9b4ef 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: 1.1.1 ([History](CHANGELOG.md)) +Version: 1.2.0 ([History](CHANGELOG.md)) ### Recent Breaking Changes diff --git a/config.json b/config.json index ae1609e5..90be78e0 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": "1.1.1", + "version": "1.2.0", "startup": "services", "arch": ["amd64","armhf","aarch64","i386"], "boot": "auto", diff --git a/insteon_mqtt/const.py b/insteon_mqtt/const.py index 6d9aaf20..7fc730cd 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__ = "1.1.1" +__version__ = "1.2.0" #=========================================================================== diff --git a/setup.py b/setup.py index 8c4c30b8..f802e8f5 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name = 'insteon-mqtt', - version = '1.1.1', + version = '1.2.0', description = "Insteon <-> MQTT bridge server", long_description = readme, author = "Ted Drain",