mirror of
https://codeberg.org/vyn/mirai.git
synced 2025-07-03 18:23:19 +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.incrementMinorVersion()
|
|
releaseCommon.performUpdates(v)
|
|
|
|
print( "Updated files to v{0}".format( v.getVersionString() ) )
|