Skip to content

Commit 60c619f

Browse files
author
Hiroaki Kataoka
committed
version 0.3.1
1 parent 915bfbe commit 60c619f

4 files changed

Lines changed: 17 additions & 15 deletions

File tree

README.rst

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,20 @@ $ pip3 install polyphony
1313

1414
Usage
1515
-----
16-
$ polyphony [Options] [Python source file]
17-
18-
::
19-
20-
Options:
21-
-h, --help show this help message and exit
22-
-o FILE, --output=FILE
23-
output filename (default is 'polyphony_out')
24-
-d DIR, --dir=DIR output directory
25-
-v verbose output
26-
-D, --debug enable debug mode
27-
-V, --version print the Polyphony version number
16+
usage: polyphony [-h] [-o FILE] [-d DIR] [-v] [-D] [-q] [-V] source
17+
18+
positional arguments:
19+
source Python source file
20+
21+
optional arguments:
22+
-h, --help show this help message and exit
23+
-o FILE, --output FILE
24+
output filename (default is "polyphony_out")
25+
-d DIR, --dir DIR output directory
26+
-v, --verbose verbose output
27+
-D, --debug enable debug mode
28+
-q, --quiet suppress warning/error messages
29+
-V, --version print the Polyphony version number
2830

2931
Examples
3032
--------

polyphony/_internal/_polyphony.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.3.0' # type: str
1+
__version__ = '0.3.1' # type: str
22
__all__ = [
33
'testbench',
44
'pure',

polyphony/compiler/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ def output_individual(compile_results, output_name, output_dir):
541541

542542

543543
def main():
544-
parser = argparse.ArgumentParser(prog='Polyphony')
544+
parser = argparse.ArgumentParser(prog='polyphony')
545545

546546
parser.add_argument('-o', '--output', dest='output_name',
547547
default='polyphony_out',

polyphony/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.3.0'
1+
__version__ = '0.3.1'

0 commit comments

Comments
 (0)