aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/catch2/tools/scripts/majorRelease.py
blob: eb712b46612ca329e56b26d1bcfbcbf839de98f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python3

import releaseCommon

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

print( "Updated files to v{0}".format( v.getVersionString() ) )