diff --git a/custom_components/edge_tts/manifest.json b/custom_components/edge_tts/manifest.json index f4cc950..bfb0aec 100644 --- a/custom_components/edge_tts/manifest.json +++ b/custom_components/edge_tts/manifest.json @@ -1,10 +1,10 @@ { "domain": "edge_tts", "name": "Microsoft Edge TTS", - "codeowners": [], + "codeowners": ["@al-one", "@rany2"], "documentation": "https://github.com/hasscc/hass-edge-tts", "iot_class": "cloud_polling", "issue_tracker": "https://github.com/hasscc/hass-edge-tts/issues", - "requirements": ["edge-tts==6.1.5"], + "requirements": ["edge-tts==6.1.8"], "version": "0.0.1" } diff --git a/custom_components/edge_tts/tts.py b/custom_components/edge_tts/tts.py index bd515f1..4c8a627 100644 --- a/custom_components/edge_tts/tts.py +++ b/custom_components/edge_tts/tts.py @@ -5,7 +5,7 @@ import voluptuous as vol from homeassistant.components.tts import CONF_LANG, PLATFORM_SCHEMA, Provider -EDGE_TTS_VERSION = '6.1.5' +EDGE_TTS_VERSION = '6.1.8' try: import edge_tts if '__version__' not in dir(edge_tts) or edge_tts.__version__ != EDGE_TTS_VERSION: