majorRelease.py 261 B

12345678910
  1. #!/usr/bin/env python3
  2. from __future__ import print_function
  3. import releaseCommon
  4. v = releaseCommon.Version()
  5. v.incrementMajorVersion()
  6. releaseCommon.performUpdates(v)
  7. print( "Updated Version.hpp, README and Conan to v{0}".format( v.getVersionString() ) )