diff --git a/CHANGELOG.md b/CHANGELOG.md index 71533141..f0b4ecc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v3.10.10 (2021-10-13) +### Fix +* Fix issue where next_alarm would cancel on reload ([#1379](https://github.com/custom-components/alexa_media_player/issues/1379)) ([`a5dd83a`](https://github.com/custom-components/alexa_media_player/commit/a5dd83a3ab1a7bec565e470e11d28d3d5076b695)) + ## v3.10.9 (2021-10-13) ### Fix * Fix icon on do not disturb switch ([#1377](https://github.com/custom-components/alexa_media_player/issues/1377)) ([`5407be3`](https://github.com/custom-components/alexa_media_player/commit/5407be36fd4e34782224212af5659a63d9dc306a)) diff --git a/custom_components/alexa_media/const.py b/custom_components/alexa_media/const.py index d0dda990..24289675 100644 --- a/custom_components/alexa_media/const.py +++ b/custom_components/alexa_media/const.py @@ -8,7 +8,7 @@ """ from datetime import timedelta -__version__ = "3.10.9" +__version__ = "3.10.10" PROJECT_URL = "https://github.com/custom-components/alexa_media_player/" ISSUE_URL = f"{PROJECT_URL}issues" diff --git a/custom_components/alexa_media/manifest.json b/custom_components/alexa_media/manifest.json index 73f50567..4bed4f00 100644 --- a/custom_components/alexa_media/manifest.json +++ b/custom_components/alexa_media/manifest.json @@ -1,7 +1,7 @@ { "domain": "alexa_media", "name": "Alexa Media Player", - "version": "3.10.9", + "version": "3.10.10", "config_flow": true, "documentation": "https://github.com/custom-components/alexa_media_player/wiki", "issue_tracker": "https://github.com/custom-components/alexa_media_player/issues", diff --git a/pyproject.toml b/pyproject.toml index df839efb..16bf0e08 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "alexa_media_player" -version = "3.10.9" +version = "3.10.10" description = "This is a custom component to allow control of Amazon Alexa devices in [Homeassistant](https://home-assistant.io) using the unofficial Alexa API." authors = ["Keaton Taylor ","Alan D. Tse "] license = "Apache-2.0"