From d829df332d8353661268f45300ac919dd8eb5116 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 26 May 2021 20:18:29 +0200 Subject: [PATCH] Bump version to 2021.7.0dev0 (#51116) --- homeassistant/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/const.py b/homeassistant/const.py index 00e06f1e8d0..529b0969e4a 100644 --- a/homeassistant/const.py +++ b/homeassistant/const.py @@ -4,7 +4,7 @@ from __future__ import annotations from typing import Final MAJOR_VERSION: Final = 2021 -MINOR_VERSION: Final = 6 +MINOR_VERSION: Final = 7 PATCH_VERSION: Final = "0.dev0" __short_version__: Final = f"{MAJOR_VERSION}.{MINOR_VERSION}" __version__: Final = f"{__short_version__}.{PATCH_VERSION}"