From 277b916fcdfd7eab4c0507d7136449d287250715 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sun, 13 Dec 2020 22:13:58 +0100 Subject: [PATCH] 2020.12.0 --- homeassistant/const.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/const.py b/homeassistant/const.py index a5ffbff4cd8..1e7d243b9ad 100644 --- a/homeassistant/const.py +++ b/homeassistant/const.py @@ -1,6 +1,6 @@ """Constants used by Home Assistant components.""" -MAJOR_VERSION = 1 -MINOR_VERSION = 0 +MAJOR_VERSION = 2020 +MINOR_VERSION = 12 PATCH_VERSION = "0" __short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}" __version__ = f"{__short_version__}.{PATCH_VERSION}"