Skip to content

Commit

Permalink
[prep-release-3.0.8] Incrementing version number to 3.0.8 and update …
Browse files Browse the repository at this point in the history
…changelog
  • Loading branch information
naderman committed Nov 19, 2010
1 parent 2831a3a commit af4c2a3
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 10 deletions.
6 changes: 3 additions & 3 deletions build/build.xml
Expand Up @@ -2,9 +2,9 @@

<project name="phpBB" description="The phpBB forum software" default="all" basedir="../">
<!-- a few settings for the build -->
<property name="newversion" value="3.0.8-RC1" />
<property name="prevversion" value="3.0.7-PL1" />
<property name="olderversions" value="3.0.2, 3.0.3, 3.0.4, 3.0.5, 3.0.6" />
<property name="newversion" value="3.0.8" />
<property name="prevversion" value="3.0.8-RC1" />
<property name="olderversions" value="3.0.2, 3.0.3, 3.0.4, 3.0.5, 3.0.6, 3.0.7-PL1" />
<!-- no configuration should be needed beyond this point -->

<property name="oldversions" value="${olderversions}, ${prevversion}" />
Expand Down
12 changes: 12 additions & 0 deletions phpBB/docs/CHANGELOG.html
Expand Up @@ -90,6 +90,12 @@ <h1>Changelog</h1>
<div class="content">

<a name="v307-PL1"></a><h3>1.i. Changes since 3.0.7-PL1</h3>
<h4> Security
</h4>
<ul>
<li>[<a href='http://tracker.phpbb.com/browse/PHPBB3-9903'>PHPBB3-9903</a>] - Execute javascript in [flash=] BBCode
</li>
</ul>

<h4> Bug
</h4>
Expand Down Expand Up @@ -404,6 +410,8 @@ <h4> Bug
</li>
<li>[<a href='http://tracker.phpbb.com/browse/PHPBB3-9891'>PHPBB3-9891</a>] - Updater drops language-selection after database-update
</li>
<li>[<a href='http://tracker.phpbb.com/browse/PHPBB3-9509'>PHPBB3-9509</a>] - phpBB Coding Guidelines state subversion as the version control system for phpBB
</li>
</ul>

<h4> Improvement
Expand Down Expand Up @@ -467,6 +475,8 @@ <h4> Improvement
</li>
<li>[<a href='http://tracker.phpbb.com/browse/PHPBB3-9880'>PHPBB3-9880</a>] - Rename all mentions of CAPTCHA or visual confirmation to anti-bot
</li>
<li>[<a href='http://tracker.phpbb.com/browse/PHPBB3-9899'>PHPBB3-9899</a>] - Change the style in the ACP for the recaptcha to match that displayed on prosilver
</li>
</ul>

<h4> New Feature
Expand Down Expand Up @@ -509,6 +519,8 @@ <h4> Task
</li>
<li>[<a href='http://tracker.phpbb.com/browse/PHPBB3-9868'>PHPBB3-9868</a>] - Make the test suite run and pass using the mssqlnative driver
</li>
<li>[<a href='http://tracker.phpbb.com/browse/PHPBB3-9904'>PHPBB3-9904</a>] - Update WebPI Parameters.xml
</li>
</ul>

<h4> Sub-task
Expand Down
2 changes: 1 addition & 1 deletion phpBB/includes/constants.php
Expand Up @@ -25,7 +25,7 @@
*/

// phpBB Version
define('PHPBB_VERSION', '3.0.8-RC1');
define('PHPBB_VERSION', '3.0.8');

// QA-related
// define('PHPBB_QA', 1);
Expand Down
16 changes: 11 additions & 5 deletions phpBB/install/database_update.php
Expand Up @@ -8,7 +8,7 @@
*
*/

$updates_to_version = '3.0.8-RC1';
$updates_to_version = '3.0.8';

// Enter any version to update from to test updates. The version within the db will not be updated.
$debug_from_version = false;
Expand Down Expand Up @@ -914,6 +914,8 @@ function database_update_info()
'3.0.7' => array(),
// No changes from 3.0.7-PL1 to 3.0.8-RC1
'3.0.7-PL1' => array(),
// No changes from 3.0.8-RC1 to 3.0.8
'3.0.8-RC1' => array(),
);
}

Expand Down Expand Up @@ -1672,7 +1674,7 @@ function change_database_data(&$no_updates, $version)
"{$phpbb_root_path}language/$lang_dir/install.$phpEx",
"{$phpbb_root_path}language/$lang_dir/acp/attachments.$phpEx",
);

foreach ($lang_files as $lang_file)
{
if (!file_exists($lang_file))
Expand Down Expand Up @@ -1852,6 +1854,10 @@ function change_database_data(&$no_updates, $version)

$no_updates = false;
break;

// No changes from 3.0.8-RC1 to 3.0.8
case '3.0.8-RC1':
break;
}
}

Expand Down Expand Up @@ -1998,7 +2004,7 @@ class updater_db_tools
'VCHAR_CI' => '[varchar] (255)',
'VARBINARY' => '[varchar] (255)',
),

'mssqlnative' => array(
'INT:' => '[int]',
'BINT' => '[float]',
Expand Down Expand Up @@ -2028,7 +2034,7 @@ class updater_db_tools
'VCHAR_CI' => '[varchar] (255)',
'VARBINARY' => '[varchar] (255)',
),

'oracle' => array(
'INT:' => 'number(%d)',
'BINT' => 'number(20)',
Expand Down Expand Up @@ -2175,7 +2181,7 @@ function updater_db_tools(&$db, $return_statements = false)
case 'mssql_odbc':
$this->sql_layer = 'mssql';
break;

case 'mssqlnative':
$this->sql_layer = 'mssqlnative';
break;
Expand Down
2 changes: 1 addition & 1 deletion phpBB/install/schemas/schema_data.sql
Expand Up @@ -242,7 +242,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('topics_per_page',
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tpl_allow_php', '0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_icons_path', 'images/upload_icons');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_path', 'files');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '3.0.8-RC1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '3.0.8');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('warnings_expire_days', '90');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('warnings_gc', '14400');

Expand Down

0 comments on commit af4c2a3

Please sign in to comment.