Skip to content

Commit

Permalink
⬆ bump edge-tts version to v6.1.5 (#38)
Browse files Browse the repository at this point in the history
* ⬆ bump edge-tts version to v6.1.5

* Sort manifest keys with domain & name first then alphabetical order
  • Loading branch information
rany2 authored Apr 30, 2023
1 parent 44f8d50 commit f97a301
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions custom_components/edge_tts/manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"domain": "edge_tts",
"name": "Microsoft Edge TTS",
"version": "0.0.1",
"codeowners": [],
"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.3"],
"codeowners": [],
"iot_class": "cloud_polling"
"requirements": ["edge-tts==6.1.5"],
"version": "0.0.1"
}
2 changes: 1 addition & 1 deletion custom_components/edge_tts/tts.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import voluptuous as vol
from homeassistant.components.tts import CONF_LANG, PLATFORM_SCHEMA, Provider

EDGE_TTS_VERSION = '6.1.3'
EDGE_TTS_VERSION = '6.1.5'
try:
import edge_tts
if '__version__' not in dir(edge_tts) or edge_tts.__version__ != EDGE_TTS_VERSION:
Expand Down

0 comments on commit f97a301

Please sign in to comment.