setting version to 1.4.002 for the upcomming bugfix/maintainance release

This commit is contained in:
Ralf Becker 2007-09-24 08:45:33 +00:00
parent 6a1a75adad
commit ad8561debb
2 changed files with 8 additions and 1 deletions

View File

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

View File

@ -806,3 +806,10 @@
// final 1.4 release
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.4.001';
}
$test[] = '1.4.001';
function phpgwapi_upgrade1_4_001()
{
// 1.4.002 bugfix/maintainance release
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.4.002';
}