Skip to content

Commit

Permalink
to v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsonj committed Mar 15, 2021
1 parent f823bc9 commit 51a6ba7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Ericson Joseph'

# The full version, including alpha/beta/rc tags
release = '2.0.0'
release = '2.0.1'

version = release

Expand Down
2 changes: 1 addition & 1 deletion scripts/pybuildanalyzer2
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ class MemRegionView:
parser = argparse.ArgumentParser(description='Builder Analyzer for ARM firmware')
parser.add_argument('elf', type=str, help='ELF file')
parser.add_argument('-g', '--gtk', help='Show in gtk window', action="store_true")
parser.add_argument('-v', '--version', action='version', version='%(prog)s 2.0.0')
parser.add_argument('-v', '--version', action='version', version='%(prog)s 2.0.1')
args = parser.parse_args()

cross_compile_prefix = os.environ.get('CROSS_COMPILE', '')
Expand Down
2 changes: 1 addition & 1 deletion scripts/pymaketool
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ log = Logger.getLogger()
parser = argparse.ArgumentParser()
parser.add_argument('goal', type=str, help='Makefile command goal', default=None, nargs='?')
parser.add_argument('--init', type=str, help='initialize project', const=os.path.basename(os.getcwd()), dest='project_name', nargs='?')
parser.add_argument('-v', '--version', action='version', version='%(prog)s 2.0.0')
parser.add_argument('-v', '--version', action='version', version='%(prog)s 2.0.1')
args = parser.parse_args()

goal = args.goal
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="pymaketool",
version="2.0.0",
version="2.0.1",
author="Ericson Joseph",
author_email="ericsonjoseph@gmail.com",
description="Python Makefile Tool",
Expand Down

0 comments on commit 51a6ba7

Please sign in to comment.