File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 2
2
"""Constants used by Home Assistant components."""
3
3
MAJOR_VERSION = 0
4
4
MINOR_VERSION = 98
5
- PATCH_VERSION = "0.dev0 "
5
+ PATCH_VERSION = "0b0 "
6
6
__short_version__ = "{}.{}" .format (MAJOR_VERSION , MINOR_VERSION )
7
7
__version__ = "{}.{}" .format (__short_version__ , PATCH_VERSION )
8
8
REQUIRED_PYTHON_VER = (3 , 6 , 0 )
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ def write_version(version):
102
102
"MINOR_VERSION = .*\n " , "MINOR_VERSION = {}\n " .format (minor ), content
103
103
)
104
104
content = re .sub (
105
- "PATCH_VERSION = .*\n " , " PATCH_VERSION = '{}' \n " .format (patch ), content
105
+ "PATCH_VERSION = .*\n " , ' PATCH_VERSION = "{}" \n ' .format (patch ), content
106
106
)
107
107
108
108
with open ("homeassistant/const.py" , "wt" ) as fil :
You can’t perform that action at this time.
0 commit comments