Prepare for version 5.2.4-dev
Signed-off-by: Isaac Bennetch <bennetch@gmail.com>
This commit is contained in:
parent
fd3799cdc5
commit
ccf11ddfa6
@ -1,6 +1,8 @@
|
|||||||
phpMyAdmin - ChangeLog
|
phpMyAdmin - ChangeLog
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
5.2.4 (not yet released)
|
||||||
|
|
||||||
5.2.3 (2025-10-07)
|
5.2.3 (2025-10-07)
|
||||||
- issue #19548 Fix missing tooltip in status monitor log table
|
- issue #19548 Fix missing tooltip in status monitor log table
|
||||||
- issue #19619 Fix horizontal scrollbar in server status pages
|
- issue #19619 Fix horizontal scrollbar in server status pages
|
||||||
|
|||||||
2
README
2
README
@ -1,7 +1,7 @@
|
|||||||
phpMyAdmin - Readme
|
phpMyAdmin - Readme
|
||||||
===================
|
===================
|
||||||
|
|
||||||
Version 5.2.3
|
Version 5.2.4-dev
|
||||||
|
|
||||||
A web interface for MySQL and MariaDB.
|
A web interface for MySQL and MariaDB.
|
||||||
|
|
||||||
|
|||||||
@ -51,7 +51,7 @@ copyright = u'2012 - 2025, The phpMyAdmin devel team'
|
|||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '5.2.3'
|
version = '5.2.4-dev'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = version
|
release = version
|
||||||
|
|
||||||
|
|||||||
@ -14,12 +14,12 @@ use const VERSION_SUFFIX;
|
|||||||
final class Version
|
final class Version
|
||||||
{
|
{
|
||||||
// The VERSION_SUFFIX constant is defined at libraries/constants.php
|
// The VERSION_SUFFIX constant is defined at libraries/constants.php
|
||||||
public const VERSION = '5.2.3' . VERSION_SUFFIX;
|
public const VERSION = '5.2.4-dev' . VERSION_SUFFIX;
|
||||||
public const SERIES = '5.2';
|
public const SERIES = '5.2';
|
||||||
public const MAJOR = 5;
|
public const MAJOR = 5;
|
||||||
public const MINOR = 2;
|
public const MINOR = 2;
|
||||||
public const PATCH = 3;
|
public const PATCH = 4;
|
||||||
public const ID = 50203;
|
public const ID = 50204;
|
||||||
public const PRE_RELEASE_NAME = '';
|
public const PRE_RELEASE_NAME = 'dev';
|
||||||
public const IS_DEV = false;
|
public const IS_DEV = true;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "phpmyadmin",
|
"name": "phpmyadmin",
|
||||||
"version": "5.2.3",
|
"version": "5.2.4-dev",
|
||||||
"description": "A web interface for MySQL and MariaDB",
|
"description": "A web interface for MySQL and MariaDB",
|
||||||
"repository": "https://github.com/phpmyadmin/phpmyadmin.git",
|
"repository": "https://github.com/phpmyadmin/phpmyadmin.git",
|
||||||
"author": "The phpMyAdmin Team <developers@phpmyadmin.net> (https://www.phpmyadmin.net/team/)",
|
"author": "The phpMyAdmin Team <developers@phpmyadmin.net> (https://www.phpmyadmin.net/team/)",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user