diff --git a/CHANGELOG.md b/CHANGELOG.md index 23067f88..0e6b85d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v4.4.0 (2022-12-24) +### Feature +* Add debug loggers support ([`37a795d`](https://github.com/custom-components/alexa_media_player/commit/37a795d42367f2e1527a01c9177c41443ccc386b)) + ## v4.3.2 (2022-11-03) ### Fix * Fix misconfigured HA url overriding url input ([`02297a4`](https://github.com/custom-components/alexa_media_player/commit/02297a4537ea36c77551ba10e4efe57e3dacfc8a)) diff --git a/custom_components/alexa_media/const.py b/custom_components/alexa_media/const.py index 55ffa307..8a8df879 100644 --- a/custom_components/alexa_media/const.py +++ b/custom_components/alexa_media/const.py @@ -8,7 +8,7 @@ """ from datetime import timedelta -__version__ = "4.3.2" +__version__ = "4.4.0" PROJECT_URL = "https://github.com/custom-components/alexa_media_player/" ISSUE_URL = f"{PROJECT_URL}issues" NOTIFY_URL = f"{PROJECT_URL}wiki/Configuration%3A-Notification-Component#use-the-notifyalexa_media-service" diff --git a/custom_components/alexa_media/manifest.json b/custom_components/alexa_media/manifest.json index 9804a8eb..59146a99 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": "4.3.2", + "version": "4.4.0", "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 fb489d1d..1ed25bfc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "alexa_media_player" -version = "4.3.2" +version = "4.4.0" 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"