diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ecf476b..dc28132d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v4.6.0 (2023-01-31) +### Feature +* Add ledvance bluetooth bulbs ([#1847](https://github.com/custom-components/alexa_media_player/issues/1847)) ([`5816afe`](https://github.com/custom-components/alexa_media_player/commit/5816afe60852218684594471fb86b8d399eda64b)) + ## v4.5.3 (2023-01-14) ### Fix * Update coordinator callback to update sensors ([`708b6c5`](https://github.com/custom-components/alexa_media_player/commit/708b6c52eba7d2bb853005a5acb6ce6ad11ffa7a)) diff --git a/custom_components/alexa_media/const.py b/custom_components/alexa_media/const.py index 7d953449..16acbaa6 100644 --- a/custom_components/alexa_media/const.py +++ b/custom_components/alexa_media/const.py @@ -14,7 +14,7 @@ PERCENTAGE, ) -__version__ = "4.5.3" +__version__ = "4.6.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 7a9bb383..b02e8287 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.5.3", + "version": "4.6.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 156cf0cd..c44f489b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "alexa_media_player" -version = "4.5.3" +version = "4.6.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"