From f7eaf3c155c187eb3418faf7b3811066f653c7e7 Mon Sep 17 00:00:00 2001 From: Black Roland Date: Thu, 7 Nov 2024 01:19:35 +0300 Subject: [PATCH] =?UTF-8?q?Sort=20manifest=20keys=20=F0=9F=A4=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit To fix: [MANIFEST] Manifest keys are not sorted correctly: domain, name, then alphabetical order --- custom_components/gsm_call/manifest.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/custom_components/gsm_call/manifest.json b/custom_components/gsm_call/manifest.json index ca95f02..3a70b4a 100644 --- a/custom_components/gsm_call/manifest.json +++ b/custom_components/gsm_call/manifest.json @@ -1,12 +1,12 @@ { "domain": "gsm_call", "name": "Voice calls using GSM-modem", - "version": "0.2.0-rc.1", "codeowners": ["@black-roland"], "dependencies": [], "documentation": "https://github.com/black-roland/homeassistant-gsm-call#readme", - "issue_tracker": "https://github.com/black-roland/homeassistant-gsm-call/issues", "iot_class": "local_polling", + "issue_tracker": "https://github.com/black-roland/homeassistant-gsm-call/issues", "loggers": ["gsm_call"], - "requirements": ["pyserial-asyncio-fast==0.13"] + "requirements": ["pyserial-asyncio-fast==0.13"], + "version": "0.2.0-rc.1" }