From d4f1f6d552cae4f3dbff586ad189891234ff1c46 Mon Sep 17 00:00:00 2001 From: Isaac Bennetch Date: Thu, 20 Jan 2022 12:43:04 -0500 Subject: [PATCH] Prepare for version 5.2.0-rc1 Signed-off-by: Isaac Bennetch --- README | 2 +- doc/conf.py | 2 +- libraries/classes/Version.php | 6 +++--- package.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README b/README index e1b533b5f4..e78f6a1d24 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ phpMyAdmin - Readme =================== -Version 5.2.0-dev +Version 5.2.0-rc1 A web interface for MySQL and MariaDB. diff --git a/doc/conf.py b/doc/conf.py index 52c2e2bac8..3951fff673 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-rc1' # The full version, including alpha/beta/rc tags. release = version diff --git a/libraries/classes/Version.php b/libraries/classes/Version.php index 2062707f3c..cbe18ce069 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-rc1' . 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 = 'rc1'; + public const IS_DEV = false; } diff --git a/package.json b/package.json index 062130d781..98be3a6079 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "phpmyadmin", - "version": "5.2.0-dev", + "version": "5.2.0-rc1", "description": "A web interface for MySQL and MariaDB", "repository": "https://github.com/phpmyadmin/phpmyadmin.git", "author": "The phpMyAdmin Team (https://www.phpmyadmin.net/team/)",