From 5543866726f59b844ee2e97c15e2385aa3177839 Mon Sep 17 00:00:00 2001 From: ludeeus Date: Fri, 31 Aug 2018 20:12:56 +0200 Subject: [PATCH] 0.2.0 - Add more attributes for hassio versions --- .travis.yml | 2 +- custom_components/sensor/versions.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index a737f0d..b374453 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,6 @@ jobs: python: "3.6" script: - hass -c . --daemon - - sleep 30 + - sleep 60 - cat ./home-assistant.log - if grep -q 'ERROR' ./home-assistant.log; then echo "There was an error starting Home Assistant"; exit 1; fi \ No newline at end of file diff --git a/custom_components/sensor/versions.py b/custom_components/sensor/versions.py index 1b6584b..ccfe8d7 100644 --- a/custom_components/sensor/versions.py +++ b/custom_components/sensor/versions.py @@ -9,7 +9,7 @@ import homeassistant.helpers.config_validation as cv from homeassistant.components.sensor import (PLATFORM_SCHEMA) -__version__ = '0.1.0' +__version__ = '0.2.0' REQUIREMENTS = ['pyhaversion==0.1.0']