Skip to content

Commit

Permalink
Prepare for version 5.1.4
Browse files Browse the repository at this point in the history
Signed-off-by: Isaac Bennetch <bennetch@gmail.com>
  • Loading branch information
ibennetch committed May 11, 2022
1 parent a3bad74 commit f287430
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
@@ -1,7 +1,7 @@
phpMyAdmin - ChangeLog
======================

5.1.4 (not yet released)
5.1.4 (2022-05-10)
- issue #17287 Fixed sorting the database list with "statistics" enabled on "Data" column creates a PHP type error
- issue #17368 Fix for invalid cache when losing access to config storage after it being cached
- issue #17387 Fix session cookie not respecting the CookieSameSite configuration directive in PHP 7.2
Expand Down
2 changes: 1 addition & 1 deletion README
@@ -1,7 +1,7 @@
phpMyAdmin - Readme
===================

Version 5.1.4-dev
Version 5.1.4

A web interface for MySQL and MariaDB.

Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Expand Up @@ -51,7 +51,7 @@
# built documents.
#
# The short X.Y version.
version = '5.1.4-dev'
version = '5.1.4'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
6 changes: 3 additions & 3 deletions libraries/classes/Version.php
Expand Up @@ -12,12 +12,12 @@
final class Version
{
// The VERSION_SUFFIX constant is defined at libraries/vendor_config.php
public const VERSION = '5.1.4-dev' . VERSION_SUFFIX;
public const VERSION = '5.1.4' . VERSION_SUFFIX;
public const SERIES = '5.1';
public const MAJOR = 5;
public const MINOR = 1;
public const PATCH = 4;
public const ID = 50104;
public const PRE_RELEASE_NAME = 'dev';
public const IS_DEV = true;
public const PRE_RELEASE_NAME = '';
public const IS_DEV = false;
}
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "phpmyadmin",
"version": "5.1.4-dev",
"version": "5.1.4",
"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/)",
Expand Down

0 comments on commit f287430

Please sign in to comment.