mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-07 15:40:00 +01:00
git-subtree-dir: externals/catch git-subtree-split: ab6c7375be9a8e71ee84c6f8537113f9f47daf99
10 lines
196 B
Python
Executable File
10 lines
196 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import releaseCommon
|
|
|
|
v = releaseCommon.Version()
|
|
v.incrementBuildNumber()
|
|
releaseCommon.performUpdates(v)
|
|
|
|
print( "Updated files to v{0}".format( v.getVersionString() ) )
|