Merge pull request #8942 from home-assistant/release-0-51-1

0.51.1
This commit is contained in:
Paulus Schoutsen 2017-08-12 14:59:38 -07:00 committed by GitHub
commit b18679ec0b
5 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@ FINGERPRINTS = {
"frontend.html": "fb225cfababf965f8e19a8eb5c5a2a7e",
"mdi.html": "e91f61a039ed0a9936e7ee5360da3870",
"micromarkdown-js.html": "93b5ec4016f0bba585521cf4d18dec1a",
"panels/ha-panel-config.html": "878fd176dad70fe5cb8fc3c4ca72145c",
"panels/ha-panel-config.html": "ec48185c79000d0cfe5bbf38c7974944",
"panels/ha-panel-dev-event.html": "d409e7ab537d9fe629126d122345279c",
"panels/ha-panel-dev-info.html": "b0e55eb657fd75f21aba2426ac0cedc0",
"panels/ha-panel-dev-mqtt.html": "94b222b013a98583842de3e72d5888c6",

@ -1 +1 @@
Subproject commit a51b9c1eb5aecd119706a64c353b5df1de0af8cd
Subproject commit 823a6996708d5b85097fb1db0defbc03516e77bf

File diff suppressed because one or more lines are too long

View File

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