mame/3rdparty/catch/scripts/patchRelease.py

11 lines
261 B
Python
Raw Normal View History

2017-02-05 15:45:26 +01:00
#!/usr/bin/env python
2016-11-12 10:20:42 +01:00
from __future__ import print_function
from releaseCommon import Version
v = Version()
v.incrementPatchNumber()
v.updateVersionFile()
v.updateReadmeFile()
print( "Updated Version.hpp and README to v{0}".format( v.getVersionString() ) )