From 0fdd3ecef8b8bcc39459835cda6e986549a57947 Mon Sep 17 00:00:00 2001 From: Jonathan Wu Date: Wed, 1 Sep 2021 11:07:22 -0400 Subject: [PATCH] bump version --- docs/SECURITY.md | 4 ++-- src/helpers.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/SECURITY.md b/docs/SECURITY.md index 8f975f2..a0c04d1 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: | -| 2.4.3 | :white_check_mark: | -| < 2.4.3 | :x: | +| 3.0.0 | :white_check_mark: | +| < 3.0.0 | :x: | As you can tell, it is strongly recommended to always be on the latest stable version. It is strongly recommended to run the application on a modern Linux distribution (kernel >=4.19). diff --git a/src/helpers.py b/src/helpers.py index c135949..d8086bc 100644 --- a/src/helpers.py +++ b/src/helpers.py @@ -146,7 +146,7 @@ def check_version(): """ Checks if CTFOJ is up to date with the latest version on GitHub """ - curr_version = "v2.4.3" + curr_version = "v3.0.0" try: latest_version = requests.get( "https://api.github.com/repos/jdabtieu/CTFOJ/releases/latest").json()["name"]