| Antony Dovgal 2007-04-17, 7:57 am |
| tony2001 Tue Apr 17 08:16:51 2007 UTC
Modified files:
/qaweb/include release-qa.php
Log:
automate generation of dev versions
http://cvs.php.net/viewvc.cgi/qaweb...5&diff_format=u
Index: qaweb/include/release-qa.php
diff -u qaweb/include/release-qa.php:1.84 qaweb/include/release-qa.php:1.85
--- qaweb/include/release-qa.php:1.84 Mon Apr 16 20:30:53 2007
+++ qaweb/include/release-qa.php Tue Apr 17 08:16:51 2007
@@ -1,17 +1,20 @@
-<?php /* $Id: release-qa.php,v 1.84 2007/04/16 20:30:53 tony2001 Exp $ */
+<?php /* $Id: release-qa.php,v 1.85 2007/04/17 08:16:51 tony2001 Exp $ */
/*
* This file generates the "Providing QA for PHP x.x.x.." task item
* with list of urls to the packages.
*/
-$DEV_RELEASES = array(
- '4.4.7-dev',
- '5.2.2-dev',
- /* '6.0.0-dev' */
- );
-
$BUILD_TEST_RELEASES = array( '4.4.7RC1', '5.2.2RC1');
+$DEV_RELEASES = array();
+
+foreach($BUILD_TEST_RELEASES as $release) {
+ /* If RC, bump to next RC-dev, if release, bump to next release-dev */
+ $pos = strlen($release)-1;
+ $release[$pos] = $release[$pos]+1;
+ $DEV_RELEASES[] = $release . "-dev";
+}
+
$RELEASE_PROCESS = array(4 => true, 5 => true);
$CURRENT_QA_RELEASE_4 = "4.4.7RC1";
|