From 7feb7982e5bc78779cf15f9db5ae7689457408e7 Mon Sep 17 00:00:00 2001 From: Jason Verhagen Date: Sat, 6 Mar 2021 07:30:43 -0600 Subject: [PATCH] Fix for no 'version' key issue #43. Fix for issue #43. Add version key to manifest and update version number. --- custom_components/weatheralerts/sensor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/weatheralerts/sensor.py b/custom_components/weatheralerts/sensor.py index 685553a..0659160 100644 --- a/custom_components/weatheralerts/sensor.py +++ b/custom_components/weatheralerts/sensor.py @@ -16,7 +16,7 @@ from homeassistant.helpers.entity import Entity import homeassistant.helpers.config_validation as cv -__version__ = '0.1.3' +__version__ = '0.1.4' CONF_STATE = "state" CONF_ZONE = "zone"