File: majorRelease.py

package info (click to toggle)
catch 1.12.2-0.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,152 kB
  • sloc: cpp: 21,715; python: 770; ansic: 559; makefile: 2
file content (10 lines) | stat: -rwxr-xr-x 260 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python

from  __future__ import  print_function
import releaseCommon

v = releaseCommon.Version()
v.incrementMajorVersion()
releaseCommon.performUpdates(v)

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