diff --git a/changelog b/changelog index 5b477320..32640573 100644 --- a/changelog +++ b/changelog @@ -2,6 +2,7 @@ 0.0.2: Added manifest to aarlo aarlo: +0.5.10: add video_url to status 0.5.9: mirror pyaarlo version 0.5.8: mirror pyaarlo version 0.5.7: fixed crash in handle_async_mjpeg_stream @@ -27,6 +28,7 @@ aarlo: 0.0.4: mirror pyaarlo version pyaarlo: +0.5.10: mirror aarlo version 0.5.9: get devices after login 0.5.8: improved exception reporting 0.5.7: mirror aarlo version diff --git a/custom_components.json b/custom_components.json index 092e9e32..7d6ccc7f 100644 --- a/custom_components.json +++ b/custom_components.json @@ -1,6 +1,6 @@ { "aarlo": { - "version": "0.5.9", + "version": "0.5.10", "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.9", + "version": "0.5.10", "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 f69d5e4c..966eaca4 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.9' +__version__ = '0.5.10' _LOGGER = logging.getLogger(__name__) diff --git a/custom_components/aarlo/pyaarlo/__init__.py b/custom_components/aarlo/pyaarlo/__init__.py index cfbe6ebb..76fecd09 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.9' +__version__ = '0.5.10' class PyArlo(object):