Revision 92b141ee5370140143b42b5f35c70db28de6dc4f authored by Phil Nash on 28 April 2016, 07:13:00 UTC, committed by Phil Nash on 28 April 2016, 07:13:00 UTC
1 parent 4f1263d
Raw File
majorRelease.py
from  __future__ import  print_function
from releaseCommon import Version

v = Version()
v.incrementMajorVersion()
v.updateVersionFile()
v.updateReadmeFile()

print( "Updated Version.hpp and README to v{0}".format( v.getVersionString() ) )
back to top