From 82150471d5afb0f0d05c60510abf582c5ae44f32 Mon Sep 17 00:00:00 2001 From: obelix05 Date: Wed, 4 Sep 2019 14:43:27 +0200 Subject: [PATCH 1/2] add manifest entry for HACS support If I try to install the plugin via HACS there is the following error: ``` Unsupported Home Assistant version You have version '0.98.2' of Home Assistant, but version 'v0.1.1' of 'Stadtreinigung Hamburg' require version 'None' of Home Assistant, installation and upgrades are disabled for this integration untill you upgrade Home Assistant. ``` I guess the "homeassistant" entry will solve this. I've chosen `0.97.0` because the current HACS version only works for homeassistant >= 0.97.0 --- custom_components/stadtreinigung_hamburg/manifest.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/custom_components/stadtreinigung_hamburg/manifest.json b/custom_components/stadtreinigung_hamburg/manifest.json index 0742184..a662fdb 100644 --- a/custom_components/stadtreinigung_hamburg/manifest.json +++ b/custom_components/stadtreinigung_hamburg/manifest.json @@ -8,4 +8,5 @@ "stadtreinigung-hamburg==0.1.2" ], "config_flow": true - } \ No newline at end of file + "homeassistant": "0.97.0" + } From 43215d38278bfa650e013cb70a7f479bd50e212e Mon Sep 17 00:00:00 2001 From: obelix05 Date: Wed, 4 Sep 2019 14:45:26 +0200 Subject: [PATCH 2/2] fix typo --- custom_components/stadtreinigung_hamburg/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/stadtreinigung_hamburg/manifest.json b/custom_components/stadtreinigung_hamburg/manifest.json index a662fdb..8f26c6d 100644 --- a/custom_components/stadtreinigung_hamburg/manifest.json +++ b/custom_components/stadtreinigung_hamburg/manifest.json @@ -7,6 +7,6 @@ "requirements": [ "stadtreinigung-hamburg==0.1.2" ], - "config_flow": true + "config_flow": true, "homeassistant": "0.97.0" }