Skip to content

Commit

Permalink
Bump version (#32)
Browse files Browse the repository at this point in the history
* Bump version

* Update README.rst
  • Loading branch information
tuna2134 authored May 19, 2023
1 parent f3f3892 commit c7b3cc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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__":
Expand Down
2 changes: 1 addition & 1 deletion voicevox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
"HttpException", "NotfoundError",
"Speaker", "Style", "SupportedFeature"
)
__version__ = "0.2.0a2"
__version__ = "0.2.0rc"

1 comment on commit c7b3cc6

@tuna2134
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 このメッセージはAutoCodeReviewによって行われたコードレビューです 🤖

🔺 コードの解説:

  • ソフトウェア "voicevox" のバージョン上げ
  • "voice" の合成中、話者の設定が追加された
  • リードミーの変更があった

✅ コードの改善点:

  • 一部のライブラリが古かったため、更新されました。
  • 以前のバージョンだと "話者" の指定ができなかったが、今回の変更で追加されました。
  • リードミーのテキストが改善され、情報を提供するのに役立ちます。

Please sign in to comment.