Prepare for v1.5

This commit is contained in:
Grigori Goronzy 2018-09-23 20:42:06 +02:00
parent 5ab2a73411
commit 4cc0deb8e9
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
__version__ = "1.4"
__version__ = "1.5"

View File

@ -214,7 +214,7 @@ def cli():
# check arguments
parser = argparse.ArgumentParser(formatter_class=argparse.RawDescriptionHelpFormatter,
description="stcgal {} - an STC MCU ISP flash tool\n".format(stcgal.__version__) +
"(C) 2014-2017 Grigori Goronzy\nhttps://github.com/grigorig/stcgal")
"(C) 2014-2018 Grigori Goronzy and others\nhttps://github.com/grigorig/stcgal")
parser.add_argument("code_image", help="code segment file to flash (BIN/HEX)", type=argparse.FileType("rb"), nargs='?')
parser.add_argument("eeprom_image", help="eeprom segment file to flash (BIN/HEX)", type=argparse.FileType("rb"), nargs='?')
parser.add_argument("-a", "--autoreset", help="cycle power automatically by asserting DTR", action="store_true")