From c7b3cc695c50ee39ce6f86fda577f2a941044103 Mon Sep 17 00:00:00 2001 From: mc_fdc Date: Sat, 20 May 2023 05:47:23 +0900 Subject: [PATCH] Bump version (#32) * Bump version * Update README.rst --- README.rst | 2 +- voicevox/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 0a645f3..1f9513f 100644 --- a/README.rst +++ b/README.rst @@ -39,7 +39,7 @@ Example "こんにちは!", speaker=1 ) with open("voice.wav", "wb") as f: - f.write(await audio_query.synthesis()) + f.write(await audio_query.synthesis(speaker=4)) if __name__ == "__main__": diff --git a/voicevox/__init__.py b/voicevox/__init__.py index 0055324..87a0c42 100644 --- a/voicevox/__init__.py +++ b/voicevox/__init__.py @@ -15,4 +15,4 @@ "HttpException", "NotfoundError", "Speaker", "Style", "SupportedFeature" ) -__version__ = "0.2.0a2" +__version__ = "0.2.0rc"