Bumped version to 3.5.0

This commit is contained in:
TimZ99 2020-05-01 02:36:18 +02:00
parent 02c746ae41
commit 76687d8c45
No known key found for this signature in database
GPG Key ID: 4D8268DC68E8339D
5 changed files with 192 additions and 187 deletions

View File

@ -6,6 +6,11 @@ Not yet released
----------------
\-
v3.5.0 (released May 1, 2020)
-----------------------------
* See https://github.com/phpservermon/phpservermon/compare/v3.4.5...v3.5.0
v3.4.5 (released September 30, 2019)
------------------------------------

View File

@ -5,7 +5,7 @@ PHP Server Monitor
:alt: Join the chat at https://gitter.im/erickrf/nlpnet
:target: https://gitter.im/phpservermon/phpservermon
Version 3.4.5
Version 3.5.0
PHP Server Monitor is a script that checks whether your websites and servers are up and running.
It comes with a web based user interface where you can manage your services and websites,

View File

@ -51,9 +51,9 @@ copyright = u'2008-2017, Pepijn Over'
# built documents.
#
# The short X.Y version.
version = '3.4.6'
version = '3.5.0'
# The full version, including alpha/beta/rc tags.
release = '3.4.6-beta.3'
release = '3.5.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -30,7 +30,7 @@
/**
* Current PSM version
*/
define('PSM_VERSION', '3.4.6-beta.3');
define('PSM_VERSION', '3.5.0');
/**
* URL to check for updates. Will not be checked if turned off on config page.

View File

@ -354,8 +354,8 @@ class Installer
if (version_compare($version_from, '3.4.2', '<')) {
$this->upgrade342();
}
if (version_compare($version_from, '3.4.6-beta.3', '<')) {
$this->upgrade346();
if (version_compare($version_from, '3.5.0', '<')) {
$this->upgrade350();
}
psm_update_conf('version', $version_to);
}
@ -673,9 +673,9 @@ class Installer
}
/**
* Upgrade for v3.4.6 release
* Upgrade for v3.5.0 release
*/
protected function upgrade346()
protected function upgrade350()
{
$queries = array();
$queries[] = "ALTER TABLE `" . PSM_DB_PREFIX . "servers`