From cbf03da0e8ef2cce6ecd986aa78155952a874c53 Mon Sep 17 00:00:00 2001 From: Vassilis Panos <4130346+vassilis-panos@users.noreply.github.com> Date: Wed, 10 Feb 2021 11:40:03 +0200 Subject: [PATCH] Add version key to manifest file --- custom_components/smartir/__init__.py | 2 +- custom_components/smartir/manifest.json | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/custom_components/smartir/__init__.py b/custom_components/smartir/__init__.py index cdc5860e..fedc8c94 100644 --- a/custom_components/smartir/__init__.py +++ b/custom_components/smartir/__init__.py @@ -19,7 +19,7 @@ _LOGGER = logging.getLogger(__name__) DOMAIN = 'smartir' -VERSION = '1.16.0' +VERSION = '1.16.1' MANIFEST_URL = ( "https://raw.githubusercontent.com/" "smartHomeHub/SmartIR/{}/" diff --git a/custom_components/smartir/manifest.json b/custom_components/smartir/manifest.json index 07a63c96..5787f191 100644 --- a/custom_components/smartir/manifest.json +++ b/custom_components/smartir/manifest.json @@ -6,9 +6,10 @@ "codeowners": ["@smartHomeHub"], "requirements": ["aiofiles==0.6.0"], "homeassistant": "0.115.0", + "version": "1.16.1", "updater": { - "version": "1.16.0", - "releaseNotes": "-- Adds support for swing mode", + "version": "1.16.1", + "releaseNotes": "-- Add version key to manifest file", "files": [ "__init__.py", "climate.py",