Skip to content

Commit

Permalink
More verbose output in increase_version.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Armin Hornung committed Mar 14, 2014
1 parent 5c57599 commit 60fa94c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions increase_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,10 @@
with open(manifest, 'w') as f:
f.write(new_package_str)

print "Finished writing package.xml and CMakeLists.txt files."
print "Now check the output, adjust CHANGELOG, \"git commit\", and run \"git tag v%s\"." % new_version_str
print "Finished writing package.xml and CMakeLists.txt files.\n"
print "Now check the output, adjust CHANGELOG, and \"git commit\".\nFinally, run:"
print " git checkout master && git merge --no-ff devel && git tag v%s" % new_version_str
print " git push && git push --tags"



Expand Down

0 comments on commit 60fa94c

Please sign in to comment.