Change verison automatically

This commit is contained in:
Byron Lathi
2024-06-06 19:01:21 -07:00
parent 2c3cd7f232
commit dc8f29c9c1
2 changed files with 8 additions and 1 deletions

View File

@@ -1,4 +1,9 @@
from .rtl_manifest import rtl_manifest_main
VERSION_BASE = "0.0.3"
import datetime
__version__ = f"{VERSION_BASE}.{datetime.datetime.now().strftime('%Y.%m.%d.%H%M')}"
def main():
rtl_manifest_main()