From ad34e590990514aaea0ff74c18b8f991ac4fbd69 Mon Sep 17 00:00:00 2001 From: Jonathan Wu Date: Mon, 20 Dec 2021 23:21:25 -0500 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 83e9e49..2f20fae 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: | -| 3.0.1 | :white_check_mark: | -| < 3.0.1 | :x: | +| 3.1.0 | :white_check_mark: | +| < 3.1.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 25dd024..6a08acb 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 = "v3.0.1" + curr_version = "v3.1.0" try: latest_version = requests.get( "https://api.github.com/repos/jdabtieu/CTFOJ/releases/latest").json()["name"]