Merge pull request #16284 from home-assistant/rc

0.77.1
This commit is contained in:
Paulus Schoutsen 2018-08-29 23:33:53 +02:00 committed by GitHub
commit e77344f029
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 7 deletions

View File

@ -374,11 +374,11 @@ class XiaomiCube(XiaomiBinarySensor):
self._last_action = None
self._state = False
if 'proto' not in device or int(device['proto'][0:1]) == 1:
self._data_key = 'status'
data_key = 'status'
else:
self._data_key = 'cube_status'
data_key = 'cube_status'
XiaomiBinarySensor.__init__(self, device, 'Cube', xiaomi_hub,
None, None)
data_key, None)
@property
def device_state_attributes(self):

View File

@ -26,7 +26,7 @@ from homeassistant.helpers.translation import async_get_translations
from homeassistant.loader import bind_hass
from homeassistant.util.yaml import load_yaml
REQUIREMENTS = ['home-assistant-frontend==20180829.0']
REQUIREMENTS = ['home-assistant-frontend==20180829.1']
DOMAIN = 'frontend'
DEPENDENCIES = ['api', 'websocket_api', 'http', 'system_log',

View File

@ -87,6 +87,7 @@ SUPPORT_XIAOMI = SUPPORT_STATE | SUPPORT_PAUSE | \
STATE_CODE_TO_STATE = {
2: STATE_IDLE,
3: STATE_IDLE,
5: STATE_CLEANING,
6: STATE_RETURNING,

View File

@ -2,7 +2,7 @@
"""Constants used by Home Assistant components."""
MAJOR_VERSION = 0
MINOR_VERSION = 77
PATCH_VERSION = '0'
PATCH_VERSION = '1'
__short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION)
__version__ = '{}.{}'.format(__short_version__, PATCH_VERSION)
REQUIRED_PYTHON_VER = (3, 5, 3)

View File

@ -442,7 +442,7 @@ hole==0.3.0
holidays==0.9.6
# homeassistant.components.frontend
home-assistant-frontend==20180829.0
home-assistant-frontend==20180829.1
# homeassistant.components.homekit_controller
# homekit==0.10

View File

@ -84,7 +84,7 @@ hbmqtt==0.9.2
holidays==0.9.6
# homeassistant.components.frontend
home-assistant-frontend==20180829.0
home-assistant-frontend==20180829.1
# homeassistant.components.homematicip_cloud
homematicip==0.9.8