Skip to content

Commit 1c2d279

Browse files
committed
Bumped version to 2.0.18
1 parent 56ca8b0 commit 1c2d279

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

DrFujiBot_Django/dashboard/admin_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ def handle_shoutout(args):
483483

484484
def handle_debug(args):
485485
# Not sure what else would be useful to put here.
486-
output = 'DrFujiBot 2.0.17'
486+
output = 'DrFujiBot 2.0.18'
487487
return output
488488

489489
def handle_afflict(args):

DrFujiBot_Django/scheduled_tasks/backup_task.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
def backup_database():
88
original_path = settings.DATABASES['default']['NAME']
99
now = datetime.now()
10-
filename = 'db_2.0.17_' + now.strftime('%Y-%m-%d_%H-%M-%S') + '.sqlite3'
10+
filename = 'db_2.0.18_' + now.strftime('%Y-%m-%d_%H-%M-%S') + '.sqlite3'
1111
backup_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', '..', '..', 'DrFujiBot_Backup', filename)
1212
print('Backing up database from ' + original_path + ' to ' + backup_path)
1313
shutil.copyfile(original_path, backup_path)

DrFujiBot_Installer/install_python.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[Application]
22
name=DrFujiBot
3-
version=2.0.17
3+
version=2.0.18
44
entry_point=launcher:start
55
icon=drfuji.ico
66

0 commit comments

Comments
 (0)