Moved scripts/ to tools/scripts/

This commit is contained in:
Martin Hořeňovský 2019-12-06 11:53:31 +01:00
parent 6eb04667ad
commit 91ee07e08c
No known key found for this signature in database
GPG key ID: DE48307B8B0D381A
22 changed files with 5 additions and 5 deletions

10
tools/scripts/patchRelease.py Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env python
from __future__ import print_function
import releaseCommon
v = releaseCommon.Version()
v.incrementPatchNumber()
releaseCommon.performUpdates(v)
print( "Updated Version.hpp, README and Conan to v{0}".format( v.getVersionString() ) )