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>2021-02-23 19:37:21 +0300
committerIsaac Bennetch <bennetch@gmail.com>2021-02-24 09:01:34 +0300
commitfa98b0b09dd2c933e4aad14c69ee99bba54a5013 (patch)
tree2b475112b136556faaf8bada458b3445847f47ea
parentd4ec789ff316182aa6bdd6a9e0f2b2612d8a1b9d (diff)
Prepare for 5.1.0
Signed-off-by: Isaac Bennetch <bennetch@gmail.com>
-rw-r--r--ChangeLog4
-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, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 6d576a59f1..40261e351c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,7 @@
phpMyAdmin - ChangeLog
======================
-5.1.0 (not yet released)
+5.1.0 (2021-02-24)
- issue #15350 Change Media (MIME) type references to Media type
- issue #15377 Add a request router
- issue Automatically focus input in the two-factor authentication window
@@ -101,8 +101,6 @@ phpMyAdmin - ChangeLog
- issue #16667 Fixed LIKE and TINYINT in search not working properly
- issue #16424 Fixed numerical search in table and zoom
- issue Improve the version handling (new Version class) and add a VERSION_SUFFIX for vendors
-
-5.0.5 (not yet released)
- issue #14494 Fix uncaught TypeError when editing partitioning
- issue #16525 Fix PHP 8.0 failing tests when comparing 0 to ''
- issue #16429 Fixed PHP 8.0 errors on preg_replace and operand types
diff --git a/README b/README
index 0d1450c98d..582215ab00 100644
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
phpMyAdmin - Readme
===================
-Version 5.1.0-rc2
+Version 5.1.0
A web interface for MySQL and MariaDB.
diff --git a/doc/conf.py b/doc/conf.py
index 8033160a3a..9bd3eded8f 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.1.0-rc2'
+version = '5.1.0'
# The full version, including alpha/beta/rc tags.
release = version
diff --git a/libraries/classes/Version.php b/libraries/classes/Version.php
index 76c2b3c007..3146978b28 100644
--- a/libraries/classes/Version.php
+++ b/libraries/classes/Version.php
@@ -12,12 +12,12 @@ namespace PhpMyAdmin;
final class Version
{
// The VERSION_SUFFIX constant is defined at libraries/vendor_config.php
- public const VERSION = '5.1.0-dev' . VERSION_SUFFIX;
+ public const VERSION = '5.1.0' . VERSION_SUFFIX;
public const SERIES = '5.1';
public const MAJOR = 5;
public const MINOR = 1;
public const PATCH = 0;
public const ID = 50100;
- 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 72269c0a4c..725971a056 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "phpmyadmin",
- "version": "5.1.0-rc2",
+ "version": "5.1.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/)",