Skip to content

Commit

Permalink
Another fix for new_version.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Nov 29, 2015
1 parent 663af95 commit 94645ed
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scripts/new_version.py
Expand Up @@ -15,6 +15,7 @@ def main(argv):
old_version_tuple = old_version.version
new_version_tuple = list(old_version_tuple)
new_version_tuple[1] = old_version_tuple[1] + 1
new_version_tuple[2] = 0
new_version = ".".join(map(str, new_version_tuple))

history_path = os.path.join(PROJECT_DIRECTORY, "HISTORY.rst")
Expand Down

0 comments on commit 94645ed

Please sign in to comment.