From dcfcae9ffcc421fbcc46261decc5d5f1ff5eb277 Mon Sep 17 00:00:00 2001 From: Jonathan Wu Date: Sun, 29 Oct 2023 00:53:51 -0400 Subject: [PATCH] bump version --- docs/SECURITY.md | 4 ++-- src/views/admin.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/SECURITY.md b/docs/SECURITY.md index f96755b..028d810 100644 --- a/docs/SECURITY.md +++ b/docs/SECURITY.md @@ -8,8 +8,8 @@ Please refer to the chart below for versions with security support | ----------- | ------------------ | | Prereleases | :x: | | Betas | :x: | -| >= 4.0.0 | :white_check_mark: | -| < 4.0.0 | :x: | +| >= 4.1.0 | :white_check_mark: | +| < 4.1.0 | :x: | As you can tell, it is strongly recommended to always be on the latest stable major release. It is strongly recommended to run the application on a modern Linux distribution with Python >=3.8. diff --git a/src/views/admin.py b/src/views/admin.py index 64aeecb..b9bbe0c 100644 --- a/src/views/admin.py +++ b/src/views/admin.py @@ -15,7 +15,7 @@ @api.route("/console") @perm_required(["ADMIN", "SUPERADMIN", "PROBLEM_MANAGER"]) def admin_console(): - return render_template("admin/console.html", ver="v4.0.0", + return render_template("admin/console.html", ver="v4.1.0", maintenance_mode=os.path.exists('maintenance_mode'))