aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/IRCBot.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/IRCBot.py b/src/IRCBot.py
index 9ff382ab..5e4371e1 100644
--- a/src/IRCBot.py
+++ b/src/IRCBot.py
@@ -3,7 +3,8 @@ import typing, uuid
from src import EventManager, Exports, IRCServer, Logging, ModuleManager
from src import PollHook, PollSource, Socket, Timers, utils
-VERSION = "v1.12.0"
+with open("VERSION", "r") as version_file:
+ VERSION = version_file.read().strip()
SOURCE = "https://git.io/bitbot"
URL = "https://bitbot.dev"