From 3ead3c11341a0392cda998ed9f84412e3f06502b Mon Sep 17 00:00:00 2001 From: Jonathan Wu Date: Mon, 6 Jan 2025 17:42:24 -0500 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 0f9ee9d..0086ca5 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.2.2 | :white_check_mark: | -| < 4.2.2 | :x: | +| >= 4.3.0 | :white_check_mark: | +| < 4.3.0 | :x: | As you can tell, it is strongly recommended to always be on the latest stable major release. When security issues are uncovered, we will do our best to promptly release a patched version. diff --git a/src/views/admin.py b/src/views/admin.py index 8aae04c..e69dd5d 100644 --- a/src/views/admin.py +++ b/src/views/admin.py @@ -20,7 +20,7 @@ def admin_console(): msg = read_file('maintenance_mode') else: msg = "" - return render_template("admin/console.html", ver="v4.2.3", + return render_template("admin/console.html", ver="v4.3.0", maintenance_mode=maintenance_mode, maintenance_msg=msg)