Fix bug with edge-playback not removing temp files

* `tmp.close()` even with `delete=True` will cause `edge-playback` to
  not delete because the file will be recreated by `edge-tts`
* bump edge-tts version
This commit is contained in:
rany2
2023-01-10 16:38:41 +02:00
parent c4f91377a4
commit 85eef7d918
2 changed files with 39 additions and 22 deletions

View File

@@ -1,4 +1,4 @@
"""Edge TTS version information."""
__version__ = "6.1.0"
__version__ = "6.1.1"
__version_info__ = tuple(int(num) for num in __version__.split("."))