Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsaac Bennetch <bennetch@gmail.com>2022-05-10 13:39:49 +0300
committerIsaac Bennetch <bennetch@gmail.com>2022-05-11 07:18:12 +0300
commit89c68f74a9575b7fff3a9787b87663c2d60b976b (patch)
tree19c5fb386e358ea2c8882985ab51a0f2347e466c
parent4ccf0f90db38d8cb069d745bfee6afa8b9a3f96f (diff)
Prepare for version 5.2.0
Signed-off-by: Isaac Bennetch <bennetch@gmail.com>
-rw-r--r--ChangeLog2
-rw-r--r--README2
-rw-r--r--doc/conf.py2
-rw-r--r--libraries/classes/Version.php6
-rw-r--r--package.json2
5 files changed, 7 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 310b46f5a9..1c60a19a30 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,7 @@
phpMyAdmin - ChangeLog
======================
-5.2.0 (not yet released)
+5.2.0 (2022-05-10)
- issue #16521 Upgrade Bootstrap to version 5
- issue #16521 Drop support for Internet Explorer and others
- issue Upgrade to shapefile 3
diff --git a/README b/README
index e1b533b5f4..c0a236486b 100644
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
phpMyAdmin - Readme
===================
-Version 5.2.0-dev
+Version 5.2.0
A web interface for MySQL and MariaDB.
diff --git a/doc/conf.py b/doc/conf.py
index 52c2e2bac8..617c5d4f11 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -51,7 +51,7 @@ copyright = u'2012 - 2021, The phpMyAdmin devel team'
# built documents.
#
# The short X.Y version.
-version = '5.2.0-dev'
+version = '5.2.0'
# The full version, including alpha/beta/rc tags.
release = version
diff --git a/libraries/classes/Version.php b/libraries/classes/Version.php
index 2062707f3c..e764dff4bd 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.0-dev' . VERSION_SUFFIX;
+ public const VERSION = '5.2.0' . VERSION_SUFFIX;
public const SERIES = '5.2';
public const MAJOR = 5;
public const MINOR = 2;
public const PATCH = 0;
public const ID = 50200;
- 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 393e4dea1f..5e3b18bce9 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "phpmyadmin",
- "version": "5.2.0-dev",
+ "version": "5.2.0",
"description": "A web interface for MySQL and MariaDB",
"repository": "https://github.com/phpmyadmin/phpmyadmin.git",
"author": "The phpMyAdmin Team <developers@phpmyadmin.net> (https://www.phpmyadmin.net/team/)",