diff --git a/CHANGELOG.md b/CHANGELOG.md index 662ac1a..ea09c18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 2.0.17 + +- Fix issue with new Select options + ## 2.0.16 **Version requires HA v2022.11.0 and above** diff --git a/custom_components/shinobi/component/managers/home_assistant.py b/custom_components/shinobi/component/managers/home_assistant.py index 5bb998b..fa1c7b6 100644 --- a/custom_components/shinobi/component/managers/home_assistant.py +++ b/custom_components/shinobi/component/managers/home_assistant.py @@ -276,7 +276,7 @@ def _load_select_component(self, monitor: MonitorData, device_name: str): name=entity_name, icon=icon, device_class=f"{DOMAIN}__{ATTR_MONITOR_MODE}", - options=ICON_MONITOR_MODES.keys(), + options=list(ICON_MONITOR_MODES.keys()), entity_category=EntityCategory.CONFIG ) diff --git a/custom_components/shinobi/manifest.json b/custom_components/shinobi/manifest.json index e10d98c..249dc63 100644 --- a/custom_components/shinobi/manifest.json +++ b/custom_components/shinobi/manifest.json @@ -11,6 +11,6 @@ "codeowners": ["@elad-bar"], "requirements": [ ], "config_flow": true, - "version": "2.0.16", + "version": "2.0.17", "iot_class": "local_polling" }