Sign in
android
/
platform
/
external
/
catch2
/
21f7ef6fdcfcc98fa668028c02ba51643982e7cf
/
.
/
scripts
/
patchRelease.py
blob: 6abf87af15278973fb1d6d5ccf5f562dc382b96d [
file
] [
log
] [
blame
]
from
__future__
import
print_function
from
releaseCommon
import
Version
v
=
Version
()
v
.
incrementPatchNumber
()
v
.
updateVersionFile
()
v
.
updateReadmeFile
()
print
(
"Updated Version.hpp and README to v{0}"
.
format
(
v
.
getVersionString
()
)
)