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

import releaseCommon

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

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