From 02edea9bd72d2f8f60d3d30ac6bd6c4beca5b0a6 Mon Sep 17 00:00:00 2001 From: Akshay Joshi Date: Mon, 4 Oct 2021 19:40:31 +0530 Subject: [PATCH] Update version for release. --- web/config.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/config.py b/web/config.py index 72ad01d14..7a1f4ab1f 100644 --- a/web/config.py +++ b/web/config.py @@ -42,17 +42,17 @@ APP_ICON = 'pg-icon' # # Application version number components -APP_RELEASE = 5 -APP_REVISION = 7 +APP_RELEASE = 6 +APP_REVISION = 0 # Application version suffix, e.g. 'beta1', 'dev'. Usually an empty string # for GA releases. -APP_SUFFIX = 'dev' +APP_SUFFIX = '' # Numeric application version for upgrade checks. Should be in the format: # [X]XYYZZ, where X is the release version, Y is the revision, with a leading # zero if needed, and Z represents the suffix, with a leading zero if needed -APP_VERSION_INT = 50701 +APP_VERSION_INT = 60000 # DO NOT CHANGE! # The application version string, constructed from the components