diff --git a/docs/en_US/release_notes_7_3.rst b/docs/en_US/release_notes_7_3.rst index 912eaa3c5..6a4f00f03 100644 --- a/docs/en_US/release_notes_7_3.rst +++ b/docs/en_US/release_notes_7_3.rst @@ -29,4 +29,7 @@ Bug fixes ********* | `Issue #6136 `_ - Fix an issue where editing a database object de-selects it on the browser tree. + | `Issue #6341 `_ - Ensure that SSH Tunnel should work properly after upgrading to 7.2 from 7.1 + | `Issue #6342 `_ - Fixed an issue where pgadmin is unable to take the defined role. | `Issue #6345 `_ - Fixed an issue where Foreign Key with 3 or more columns are shown in the wrong order in SQL and Properties. + | `Issue #6353 `_ - Ensure that the master password dialog should not be visible if the parameter MASTER_PASSWORD_REQUIRED is set to False. diff --git a/web/config.py b/web/config.py index 3fa0edde9..09e5a8eb7 100644 --- a/web/config.py +++ b/web/config.py @@ -43,7 +43,7 @@ APP_ICON = 'pg-icon' # Application version number components APP_RELEASE = 7 -APP_REVISION = 2 +APP_REVISION = 3 # 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 = 70200 +APP_VERSION_INT = 70300 # DO NOT CHANGE! # The application version string, constructed from the components