From 5abd62389decefdedd7dc837602cb019ccca44dc Mon Sep 17 00:00:00 2001 From: Dave Page Date: Mon, 6 Feb 2017 15:45:14 +0000 Subject: [PATCH] Bump version for release. --- web/config.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/web/config.py b/web/config.py index 8b696923c..d764cba3b 100644 --- a/web/config.py +++ b/web/config.py @@ -35,7 +35,7 @@ APP_ICON = 'icon-postgres-alt' # Application version number components APP_RELEASE = 1 -APP_REVISION = 1 +APP_REVISION = 2 # Application version suffix, e.g. 'beta1', 'dev'. Usually an empty string # for GA releases. @@ -44,7 +44,9 @@ 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 = 11001 +# Note that we messed this up in v1.x, where the format is [X]XYZZZ. This +# should be fixed for v2.x!! +APP_VERSION_INT = 12001 # DO NOT CHANGE! # The application version string, constructed from the components