Fixed wrong version format
This commit is contained in:
Franz Rolfsvaag 2025-08-10 17:24:39 +02:00
parent dee0c4a5b4
commit 36939efac3

8
bot.py
View File

@ -8,7 +8,13 @@ import pathlib
import os, signal, asyncio, xml.etree.ElementTree as ET
import aiohttp
VERSION="0.3.9.a2"
# Version consists of the following:
# Major version
# Enhancement version
# Minor version
# Patch version
# Test/Dev version -> Does not trigger automatic update
VERSION="0.3.9.1.a2"
# ---------- Env & config loading ----------