Skip to content

Commit 23cf841

Browse files
committed
Bumped version to 0.98.0b0
1 parent c90e8ba commit 23cf841

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

homeassistant/const.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""Constants used by Home Assistant components."""
33
MAJOR_VERSION = 0
44
MINOR_VERSION = 98
5-
PATCH_VERSION = "0.dev0"
5+
PATCH_VERSION = "0b0"
66
__short_version__ = "{}.{}".format(MAJOR_VERSION, MINOR_VERSION)
77
__version__ = "{}.{}".format(__short_version__, PATCH_VERSION)
88
REQUIRED_PYTHON_VER = (3, 6, 0)

script/version_bump.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def write_version(version):
102102
"MINOR_VERSION = .*\n", "MINOR_VERSION = {}\n".format(minor), content
103103
)
104104
content = re.sub(
105-
"PATCH_VERSION = .*\n", "PATCH_VERSION = '{}'\n".format(patch), content
105+
"PATCH_VERSION = .*\n", 'PATCH_VERSION = "{}"\n'.format(patch), content
106106
)
107107

108108
with open("homeassistant/const.py", "wt") as fil:

0 commit comments

Comments
 (0)