From cabbe159aebb35594167cb3bf891924a9abf324f Mon Sep 17 00:00:00 2001 From: Isaac Bennetch Date: Tue, 7 Oct 2025 16:37:57 -0400 Subject: [PATCH] Prepare for version 5.2.3 Signed-off-by: Isaac Bennetch --- ChangeLog | 2 +- README | 2 +- doc/conf.py | 2 +- libraries/classes/Version.php | 6 +++--- package.json | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5434324048..dab7af343e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,7 @@ phpMyAdmin - ChangeLog ====================== -5.2.3 (not yet released) +5.2.3 (2025-10-07) - issue #19548 Fix missing tooltip in status monitor log table - issue #19619 Fix horizontal scrollbar in server status pages - issue #17141 Fix table comment readability on original theme diff --git a/README b/README index 2a72d085e5..27c920bc99 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ phpMyAdmin - Readme =================== -Version 5.2.3-dev +Version 5.2.3 A web interface for MySQL and MariaDB. diff --git a/doc/conf.py b/doc/conf.py index ac5346ac93..a8057e82b0 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -51,7 +51,7 @@ copyright = u'2012 - 2025, The phpMyAdmin devel team' # built documents. # # The short X.Y version. -version = '5.2.3-dev' +version = '5.2.3' # The full version, including alpha/beta/rc tags. release = version diff --git a/libraries/classes/Version.php b/libraries/classes/Version.php index 5afd94db49..d9d09cce74 100644 --- a/libraries/classes/Version.php +++ b/libraries/classes/Version.php @@ -14,12 +14,12 @@ use const VERSION_SUFFIX; final class Version { // The VERSION_SUFFIX constant is defined at libraries/constants.php - public const VERSION = '5.2.3-dev' . VERSION_SUFFIX; + public const VERSION = '5.2.3' . VERSION_SUFFIX; public const SERIES = '5.2'; public const MAJOR = 5; public const MINOR = 2; public const PATCH = 3; public const ID = 50203; - public const PRE_RELEASE_NAME = 'dev'; - public const IS_DEV = true; + public const PRE_RELEASE_NAME = ''; + public const IS_DEV = false; } diff --git a/package.json b/package.json index 23258dee38..532c87642b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "phpmyadmin", - "version": "5.2.3-dev", + "version": "5.2.3", "description": "A web interface for MySQL and MariaDB", "repository": "https://github.com/phpmyadmin/phpmyadmin.git", "author": "The phpMyAdmin Team (https://www.phpmyadmin.net/team/)",