From bb100623c114c31faf9e582bcc55e5063abcb86d Mon Sep 17 00:00:00 2001 From: Steve Herrell Date: Mon, 19 Aug 2019 11:54:57 -0400 Subject: [PATCH] bumped revision --- changelog | 2 ++ custom_components.json | 4 ++-- custom_components/aarlo/__init__.py | 2 +- custom_components/aarlo/pyaarlo/__init__.py | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/changelog b/changelog index b12b306a..fdebf501 100644 --- a/changelog +++ b/changelog @@ -2,6 +2,7 @@ 0.0.2: Added manifest to aarlo aarlo: +0.5.6: mirror pyaarlo version 0.5.5: Rename 'object' variable in library 0.5.4: Fix missing ATTR_ENTITY_ID 0.5.3: Tidied up battery and wired status @@ -23,6 +24,7 @@ aarlo: 0.0.4: mirror pyaarlo version pyaarlo: +0.5.6: initial Ultra support 0.5.5: mirror aarlo version 0.5.4: mirror aarlo version 0.5.3: Tidied up battery and wired status diff --git a/custom_components.json b/custom_components.json index 88fab267..9d62a156 100644 --- a/custom_components.json +++ b/custom_components.json @@ -1,6 +1,6 @@ { "aarlo": { - "version": "0.5.5", + "version": "0.5.6", "local_location": "/custom_components/aarlo/__init__.py", "remote_location": "https://raw.githubusercontent.com/twrecked/hass-aarlo/master/custom_components/aarlo/__init__.py", "visit_repo": "https://github.com/twrecked/hass-aarlo", @@ -15,7 +15,7 @@ ] }, "pyaarlo": { - "version": "0.5.5", + "version": "0.5.6", "local_location": "/custom_components/aarlo/pyaarlo/__init__.py", "remote_location": "https://raw.githubusercontent.com/twrecked/hass-aarlo/master/custom_components/aarlo/pyaarlo/__init__.py", "visit_repo": "https://github.com/twrecked/hass-aarlo", diff --git a/custom_components/aarlo/__init__.py b/custom_components/aarlo/__init__.py index caa9b4d2..ffbb2110 100644 --- a/custom_components/aarlo/__init__.py +++ b/custom_components/aarlo/__init__.py @@ -16,7 +16,7 @@ from homeassistant.const import ( CONF_USERNAME, CONF_PASSWORD, CONF_SCAN_INTERVAL) -__version__ = '0.5.5' +__version__ = '0.5.6' _LOGGER = logging.getLogger(__name__) diff --git a/custom_components/aarlo/pyaarlo/__init__.py b/custom_components/aarlo/pyaarlo/__init__.py index a055827f..eb4de261 100644 --- a/custom_components/aarlo/pyaarlo/__init__.py +++ b/custom_components/aarlo/pyaarlo/__init__.py @@ -26,7 +26,7 @@ _LOGGER = logging.getLogger('pyaarlo') -__version__ = '0.5.5' +__version__ = '0.5.6' class PyArlo(object):