aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2019-10-11 17:27:36 +0100
committerGravatar jesopo2019-10-11 17:27:36 +0100
commit2ca702b7871f0dac0e8f6c62cce7e8e45dc7ea00 (patch)
treec58a19b19bef86cd8d94d88fe1fb11b0c9f58582
parentadd `platform` to setup.py (linux only) (diff)
signature
don't have version 'v' prefix in VERSION
-rw-r--r--VERSION2
-rw-r--r--src/IRCBot.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/VERSION b/VERSION
index a5effa30..0eed1a29 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-v1.12.0
+1.12.0
diff --git a/src/IRCBot.py b/src/IRCBot.py
index 5e4371e1..8eb1873e 100644
--- a/src/IRCBot.py
+++ b/src/IRCBot.py
@@ -4,7 +4,7 @@ from src import EventManager, Exports, IRCServer, Logging, ModuleManager
from src import PollHook, PollSource, Socket, Timers, utils
with open("VERSION", "r") as version_file:
- VERSION = version_file.read().strip()
+ VERSION = "v%s" % version_file.read().strip()
SOURCE = "https://git.io/bitbot"
URL = "https://bitbot.dev"