We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c90e8ba commit 23cf841Copy full SHA for 23cf841
homeassistant/const.py
@@ -2,7 +2,7 @@
2
"""Constants used by Home Assistant components."""
3
MAJOR_VERSION = 0
4
MINOR_VERSION = 98
5
-PATCH_VERSION = "0.dev0"
+PATCH_VERSION = "0b0"
6
__short_version__ = "{}.{}".format(MAJOR_VERSION, MINOR_VERSION)
7
__version__ = "{}.{}".format(__short_version__, PATCH_VERSION)
8
REQUIRED_PYTHON_VER = (3, 6, 0)
script/version_bump.py
@@ -102,7 +102,7 @@ def write_version(version):
102
"MINOR_VERSION = .*\n", "MINOR_VERSION = {}\n".format(minor), content
103
)
104
content = re.sub(
105
- "PATCH_VERSION = .*\n", "PATCH_VERSION = '{}'\n".format(patch), content
+ "PATCH_VERSION = .*\n", 'PATCH_VERSION = "{}"\n'.format(patch), content
106
107
108
with open("homeassistant/const.py", "wt") as fil:
0 commit comments