From 3dd8c962e0a8d59b7ca6767782139d507d3ec66a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20Szypowicz?= Date: Thu, 3 Mar 2022 14:37:39 +0100 Subject: [PATCH] Add version tag Home Assistant got a upgrade, in which they require version tag. Please read this blog post for more information https://developers.home-assistant.io/blog/2021/01/29/custom-integration-changes/ --- custom_components/ampio/manifest.json | 20 +++++++++--------- hacs.json | 29 +++++++++++++-------------- 2 files changed, 25 insertions(+), 24 deletions(-) diff --git a/custom_components/ampio/manifest.json b/custom_components/ampio/manifest.json index b18d382..ccaac09 100644 --- a/custom_components/ampio/manifest.json +++ b/custom_components/ampio/manifest.json @@ -1,10 +1,12 @@ { - "domain": "ampio", - "name": "Ampio System", - "config_flow": true, - "documentation": "https://www.example.com", - "dependencies": [], - "codeowners": [], - "zeroconf": ["_ampio-mqtt._tcp.local."], - "requirements": ["paho-mqtt==1.5.0"] - } + "domain": "ampio", + "name": "Ampio System", + "config_flow": true, + "documentation": "https://www.example.com", + "dependencies": ["mqtt"], + "codeowners": [], + "zeroconf": ["_ampio-mqtt._tcp.local."], + "requirements": ["paho-mqtt==1.5.0"], + "version": "0.0.3", + "iot_class": "local_push" +} diff --git a/hacs.json b/hacs.json index 78775b5..a57d607 100644 --- a/hacs.json +++ b/hacs.json @@ -1,16 +1,15 @@ { - "name": "Ampio Systems", - "content_in_root": false, - "domains": [ - "switch", - "alarm_control_panel", - "sensor", - "binary_sensor", - "light", - "sensor", - "cover" - ], - "iot_class": "local_push", - "zip_release": false, - "homeassistant": "0.112.0" - } + "name": "Ampio Systems", + "content_in_root": false, + "domains": [ + "switch", + "alarm_control_panel", + "sensor", + "binary_sensor", + "light", + "sensor", + "cover" + ], + "zip_release": false, + "homeassistant": "0.112.0" +}