Merge remote-tracking branch 'origin/master' into dev

This commit is contained in:
Paulus Schoutsen 2019-09-19 15:24:51 -07:00
commit c2e108d2b5
2 changed files with 2 additions and 4 deletions

View file

@ -2,9 +2,7 @@
"domain": "frontend",
"name": "Home Assistant Frontend",
"documentation": "https://www.home-assistant.io/components/frontend",
"requirements": [
"home-assistant-frontend==20190919.0"
],
"requirements": ["home-assistant-frontend==20190919.0"],
"dependencies": [
"api",
"auth",

View file

@ -1,7 +1,7 @@
# coding: utf-8
"""Constants used by Home Assistant components."""
MAJOR_VERSION = 0
MINOR_VERSION = 99
MINOR_VERSION = 100
PATCH_VERSION = "0.dev0"
__short_version__ = "{}.{}".format(MAJOR_VERSION, MINOR_VERSION)
__version__ = "{}.{}".format(__short_version__, PATCH_VERSION)