From 3471a44f923c0f729b7f6eefb73ba6dd8539297e Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Fri, 3 Dec 2021 21:06:14 +0100 Subject: [PATCH] 2022! Happy New Year! (#60936) --- homeassistant/const.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/const.py b/homeassistant/const.py index 9da00de9a9a..c4e90dc2d57 100644 --- a/homeassistant/const.py +++ b/homeassistant/const.py @@ -5,8 +5,8 @@ from typing import Final from homeassistant.backports.enum import StrEnum -MAJOR_VERSION: Final = 2021 -MINOR_VERSION: Final = 12 +MAJOR_VERSION: Final = 2022 +MINOR_VERSION: Final = 1 PATCH_VERSION: Final = "0.dev0" __short_version__: Final = f"{MAJOR_VERSION}.{MINOR_VERSION}" __version__: Final = f"{__short_version__}.{PATCH_VERSION}"