diff --git a/changelog b/changelog index e210b6a7..b971356a 100644 --- a/changelog +++ b/changelog @@ -1,4 +1,6 @@ aarlo +0.8.1a9 + Fix a location issue (again) 0.8.1a8 Fix a location issue 0.8.1a7 diff --git a/custom_components/aarlo/__init__.py b/custom_components/aarlo/__init__.py index d27ba6df..5ceabeef 100644 --- a/custom_components/aarlo/__init__.py +++ b/custom_components/aarlo/__init__.py @@ -45,7 +45,7 @@ from .cfg import BlendedCfg, PyaarloCfg -__version__ = "0.8.1a8" +__version__ = "0.8.1a9" _LOGGER = logging.getLogger(__name__) diff --git a/custom_components/aarlo/alarm_control_panel.py b/custom_components/aarlo/alarm_control_panel.py index b20151fa..c228fc51 100644 --- a/custom_components/aarlo/alarm_control_panel.py +++ b/custom_components/aarlo/alarm_control_panel.py @@ -483,7 +483,6 @@ def extra_state_attributes(self): ATTR_ATTRIBUTION: COMPONENT_ATTRIBUTION, "name": self._attr_name, "device_brand": COMPONENT_BRAND, - "siren": self._location.has_capability(SIREN_STATE_KEY), } diff --git a/custom_components/aarlo/manifest.json b/custom_components/aarlo/manifest.json index db5227ca..e29febf5 100644 --- a/custom_components/aarlo/manifest.json +++ b/custom_components/aarlo/manifest.json @@ -15,5 +15,5 @@ "unidecode", "pyaarlo>=0.8.0.2" ], - "version": "0.8.1a8" + "version": "0.8.1a9" }