From 867b2a51493a94532120cf73ea18c71799af76a3 Mon Sep 17 00:00:00 2001 From: Akshay Joshi Date: Mon, 14 Oct 2024 16:20:54 +0530 Subject: [PATCH] Updated version for release v8.13 --- docs/en_US/release_notes_8_13.rst | 1 + web/version.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/en_US/release_notes_8_13.rst b/docs/en_US/release_notes_8_13.rst index 1adfa5a35..e2b5ef211 100644 --- a/docs/en_US/release_notes_8_13.rst +++ b/docs/en_US/release_notes_8_13.rst @@ -36,6 +36,7 @@ Bug fixes | `Issue #5307 `_ - Fixed an issue to allow the Enter key to save data in the result grid text editor. | `Issue #7289 `_ - Move 'About pgAdmin 4' to app menu on macOS. | `Issue #7837 `_ - Fixed an issue where role properties were not loading. + | `Issue #7907 `_ - Ensure server connection is successful for sslrootcert=system in server configuration. | `Issue #7919 `_ - Fixed an issue where the dock layout was not saved upon closing a tab. | `Issue #7920 `_ - Fixed an issue where the copy shortcut CTRL +C was not working in the Query Tool data grid. | `Issue #7955 `_ - Fixed an issue where Dashboard tab showing 'Something went wrong'. diff --git a/web/version.py b/web/version.py index a607f5e9e..e5a1d0adb 100644 --- a/web/version.py +++ b/web/version.py @@ -18,7 +18,7 @@ # Application version number components APP_RELEASE = 8 -APP_REVISION = 12 +APP_REVISION = 13 # Application version suffix, e.g. 'beta1', 'dev'. Usually an empty string # for GA releases. @@ -27,7 +27,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 = 81200 +APP_VERSION_INT = 81300 # DO NOT CHANGE! # The application version string, constructed from the components