htdocs/include/version.php
<?php
/**
* Version information about ImpressCMS
*
* @copyright The Xoops Project http://www.xoops.org/
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU General Public License (GPL)
* @package core
* @since Xoops
* @author phppp
*/
define('ICMS_VERSION_NAME', 'ImpressCMS 2.0.0 Beta 3');
// For backward compatibility with XOOPS
define('XOOPS_VERSION', ICMS_VERSION_NAME);
/**
* Version Status
* 1 = Alpha
* 2 = Beta
* 3 = RC
* 10 = Final
*/
define('ICMS_VERSION_STATUS', 2);
/**
* Build number
*
* Every release has its own build number, incrementable by 1 everytime we make a release
*/
// 1.5.0 RC = 107; new 2.0.0 Beta 1=108
define('ICMS_VERSION_BUILD', 110);
/**
* Latest dbversion of the System Module
*
* When installing ImpressCMS, the System Module's dbversion needs to be the latest dbversion found
* in system/include/update.php
*
* So, developers, everytime you add an upgrade block in system/include/update.php to upgrade something in the DB,
* please also change this constant
*/
define('ICMS_SYSTEM_DBVERSION', 48);