diff --git a/docs/en_US/release_notes_8_5.rst b/docs/en_US/release_notes_8_5.rst index 07f9956c47b..9908e977f79 100644 --- a/docs/en_US/release_notes_8_5.rst +++ b/docs/en_US/release_notes_8_5.rst @@ -33,6 +33,7 @@ Bug fixes ********* | `Issue #4413 `_ - Fixed an issue in Schema Diff where Columns with sequences get altered unnecessarily. + | `Issue #7111 `_ - Fixed an issue where user was unable to share a newly registered server. | `Issue #7116 `_ - Bug fixes and improvements in pgAdmin CLI. | `Issue #7139 `_ - Fixed an issue where the 'Save Password' option for SSH tunneling password was consistently disabled. | `Issue #7165 `_ - Fixed schema diff wrong query generation for table, foreign table and sequence. diff --git a/web/version.py b/web/version.py index 7272a4b6f84..f71ccc2c18d 100644 --- a/web/version.py +++ b/web/version.py @@ -18,7 +18,7 @@ # Application version number components APP_RELEASE = 8 -APP_REVISION = 4 +APP_REVISION = 5 # Application version suffix, e.g. 'beta1', 'dev'. Usually an empty string # for GA releases. @@ -27,7 +27,7 @@ # 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 = 80400 +APP_VERSION_INT = 80500 # DO NOT CHANGE! # The application version string, constructed from the components