Skip to content

Commit 36e20fc

Browse files
committed
Update version to 2.0.3
Fixed #206 Fixed #207
1 parent 739e24c commit 36e20fc

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

about_code_tool/about.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
on_windows = 'win32' in sys.platform
5050
UNC_PREFIX = u'\\\\?\\'
5151

52-
__version__ = '2.0.2'
52+
__version__ = '2.0.3'
5353

5454
# See http://dejacode.org
5555
__about_spec_version__ = '1.0'
@@ -1557,6 +1557,9 @@ def format_option(self, option):
15571557

15581558

15591559
if __name__ == '__main__':
1560+
print('\n')
1561+
print('Running about-code-tool version ' + __version__)
1562+
print('\n')
15601563
parser = get_parser()
15611564
options, args = parser.parse_args()
15621565
sys.exit(main(parser, options, args))

about_code_tool/genabout.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
import about
4141

4242

43-
__version__ = '2.0.2'
43+
__version__ = '2.0.3'
4444

4545
__copyright__ = """
4646
Copyright (c) 2013-2015 nexB Inc. All rights reserved.
@@ -960,6 +960,9 @@ def format_option(self, option):
960960

961961

962962
if __name__ == '__main__':
963+
print('\n')
964+
print('Running about-code-tool version ' + __version__)
965+
print('\n')
963966
parser = get_parser()
964967
options, args = parser.parse_args()
965968
main(parser, options, args)

about_code_tool/genattrib.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
logger.addHandler(handler)
4444
file_logger = logging.getLogger(__name__ + '_file')
4545

46-
__version__ = '2.0.2'
46+
__version__ = '2.0.3'
4747

4848
__about_spec_version__ = '1.0.0' # See http://dejacode.org
4949

@@ -333,6 +333,9 @@ def format_option(self, option):
333333

334334

335335
if __name__ == "__main__":
336+
print('\n')
337+
print('Running about-code-tool version ' + __version__)
338+
print('\n')
336339
parser = get_parser()
337340
options, args = parser.parse_args()
338341
main(parser, options, args)

0 commit comments

Comments
 (0)