Prepare for version 5.1.2

Signed-off-by: Isaac Bennetch <bennetch@gmail.com>
This commit is contained in:
Isaac Bennetch 2022-01-20 11:13:18 -05:00
parent 4506733ed3
commit d7a9a9156f
4 changed files with 6 additions and 6 deletions

2
README
View File

@ -1,7 +1,7 @@
phpMyAdmin - Readme
===================
Version 5.1.2-dev
Version 5.1.2
A web interface for MySQL and MariaDB.

View File

@ -51,7 +51,7 @@ copyright = u'2012 - 2021, The phpMyAdmin devel team'
# built documents.
#
# The short X.Y version.
version = '5.1.2-dev'
version = '5.1.2'
# The full version, including alpha/beta/rc tags.
release = version

View File

@ -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.2-dev' . VERSION_SUFFIX;
public const VERSION = '5.1.2' . VERSION_SUFFIX;
public const SERIES = '5.1';
public const MAJOR = 5;
public const MINOR = 1;
public const PATCH = 2;
public const ID = 50102;
public const PRE_RELEASE_NAME = 'dev';
public const IS_DEV = true;
public const PRE_RELEASE_NAME = '';
public const IS_DEV = false;
}

View File

@ -1,6 +1,6 @@
{
"name": "phpmyadmin",
"version": "5.1.2-dev",
"version": "5.1.2",
"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/)",