Skip to content

Commit

Permalink
chore: bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kxxt committed May 2, 2022
1 parent 0202f97 commit 2194de5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = aspeak
version = 0.2.1
version = 0.3.0
author = Levi Zim
author_email = [email protected]
description = A simple text-to-speech client using azure TTS API(trial).
Expand Down
2 changes: 1 addition & 1 deletion src/aspeak/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,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 0.2.1')
group.add_argument('-V', '--version', action='version', version='%(prog)s 0.3.0')
subgroup = group.add_mutually_exclusive_group()
subgroup.add_argument('-t', '--text', help='Text to speak. Left blank when reading from file/stdin.',
dest='text', nargs='?', default=argparse.SUPPRESS)
Expand Down

0 comments on commit 2194de5

Please sign in to comment.