adds build code

This commit is contained in:
Michel Fedde 2024-01-29 21:57:05 +01:00
parent 8dc3d08c01
commit 791639bbe7
6 changed files with 64 additions and 0 deletions

8
build/bump_minor.py Normal file
View file

@ -0,0 +1,8 @@
import versioning
if __name__ == "__main__":
currentVersion = versioning.get_version()
nextVersion = currentVersion.bump_minor()
versioning.save_version(nextVersion)