From 15fd48209967ac496918ccc8c5c983e2059e51ff Mon Sep 17 00:00:00 2001 From: kxxt Date: Tue, 3 May 2022 20:43:06 +0800 Subject: [PATCH] chore: bump version --- setup.cfg | 2 +- src/aspeak/__main__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 0d43d38..9a6aa57 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = aspeak -version = 1.1.0 +version = 1.1.1 author = Levi Zim author_email = rsworktech@outlook.com description = A simple text-to-speech client using azure TTS API(trial). diff --git a/src/aspeak/__main__.py b/src/aspeak/__main__.py index 2b76e5f..73d381c 100644 --- a/src/aspeak/__main__.py +++ b/src/aspeak/__main__.py @@ -10,7 +10,7 @@ description='This program uses trial auth token of Azure Cognitive Services to do speech synthesis for you', prog='aspeak') group = parser.add_mutually_exclusive_group() -group.add_argument('-V', '--version', action='version', version='%(prog)s 1.1.0') +group.add_argument('-V', '--version', action='version', version='%(prog)s 1.1.1') group.add_argument('-L', '--list-voices', action='store_true', help='list available voices, you can combine this argument with -v and -l', dest='list_voices') subgroup = group.add_mutually_exclusive_group()