diff --git a/docs/en_US/release_notes_7_0.rst b/docs/en_US/release_notes_7_0.rst index 34ef555e8..89dc2ad53 100644 --- a/docs/en_US/release_notes_7_0.rst +++ b/docs/en_US/release_notes_7_0.rst @@ -20,6 +20,7 @@ Bundled PostgreSQL Utilities New features ************ + | `Issue #5014 `_ - Added support for mounting shared storage in server mode. Housekeeping ************ diff --git a/web/config.py b/web/config.py index 9a030de8a..68d61d886 100644 --- a/web/config.py +++ b/web/config.py @@ -43,7 +43,7 @@ APP_ICON = 'pg-icon' # Application version number components APP_RELEASE = 6 -APP_REVISION = 20 +APP_REVISION = 21 # Application version suffix, e.g. 'beta1', 'dev'. Usually an empty string # for GA releases. @@ -52,7 +52,7 @@ 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 = 62000 +APP_VERSION_INT = 62100 # DO NOT CHANGE! # The application version string, constructed from the components