pusing the version to 1.4.001 for the final release

This commit is contained in:
Ralf Becker 2007-06-04 06:47:16 +00:00
parent 09810b4b7b
commit d12300031d
2 changed files with 10 additions and 3 deletions

View File

@ -14,7 +14,7 @@
/* Basic information about this app */ /* Basic information about this app */
$setup_info['phpgwapi']['name'] = 'phpgwapi'; $setup_info['phpgwapi']['name'] = 'phpgwapi';
$setup_info['phpgwapi']['title'] = 'eGroupWare API'; $setup_info['phpgwapi']['title'] = 'eGroupWare API';
$setup_info['phpgwapi']['version'] = '1.3.023'; $setup_info['phpgwapi']['version'] = '1.4.001';
$setup_info['phpgwapi']['versions']['current_header'] = '1.28'; $setup_info['phpgwapi']['versions']['current_header'] = '1.28';
$setup_info['phpgwapi']['enable'] = 3; $setup_info['phpgwapi']['enable'] = 3;
$setup_info['phpgwapi']['app_order'] = 1; $setup_info['phpgwapi']['app_order'] = 1;

View File

@ -789,13 +789,20 @@
$test[] = '1.3.021'; $test[] = '1.3.021';
function phpgwapi_upgrade1_3_021() function phpgwapi_upgrade1_3_021()
{ {
# 1.4 RC 1 // 1.4 RC 1
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.3.022'; return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.3.022';
} }
$test[] = '1.3.022'; $test[] = '1.3.022';
function phpgwapi_upgrade1_3_022() function phpgwapi_upgrade1_3_022()
{ {
# 1.4 RC 2 // 1.4 RC 2
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.3.023'; return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.3.023';
} }
$test[] = '1.3.023';
function phpgwapi_upgrade1_3_023()
{
// final 1.4 release
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.4.001';
}