mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-03-05 13:45:36 +00:00
9 lines
197 B
Python
Executable file
9 lines
197 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import releaseCommon
|
|
|
|
v = releaseCommon.Version()
|
|
v.incrementMajorVersion()
|
|
releaseCommon.performUpdates(v)
|
|
|
|
print( "Updated files to v{0}".format( v.getVersionString() ) )
|