Change developBuild to work same as *Release

This commit is contained in:
Martin Hořeňovský 2017-08-30 12:16:10 +02:00
parent 61d2c375dd
commit 4dcdcc0ac3
1 changed files with 3 additions and 6 deletions

View File

@ -1,13 +1,10 @@
#!/usr/bin/env python
from __future__ import print_function
from releaseCommon import Version
import releaseCommon
v = Version()
v = releaseCommon.Version()
v.incrementBuildNumber()
v.updateVersionFile()
v.updateReadmeFile()
v.updateConanFile()
v.updateConanTestFile()
releaseCommon.performUpdates(v)
print( "Updated Version.hpp, README and Conan to v{0}".format( v.getVersionString() ) )