From df5ff0d9fcedd039c719bfa587ab472cc8d1b600 Mon Sep 17 00:00:00 2001 From: rany2 Date: Thu, 5 Jan 2023 03:22:51 +0200 Subject: [PATCH] Bump to version 6.0.5 to add __version__ variable * Should be useful for HASS and other projects --- setup.cfg | 2 +- src/edge_tts/__init__.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index baeffb3..c576f1a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = edge-tts -version = 6.0.4 +version = 6.0.5 author = rany author_email = ranygh@riseup.net description = Microsoft Edge's TTS diff --git a/src/edge_tts/__init__.py b/src/edge_tts/__init__.py index 8ea0ee7..34a0d42 100644 --- a/src/edge_tts/__init__.py +++ b/src/edge_tts/__init__.py @@ -7,3 +7,4 @@ from .list_voices import VoicesManager, list_voices from .submaker import SubMaker __all__ = ["Communicate", "VoicesManager", "list_voices", "SubMaker"] +__version__ = "6.0.5"