Skip to content

Commit

Permalink
[prep-release-3.1.4] Increase version number to 3.1.4-RC2
Browse files Browse the repository at this point in the history
  • Loading branch information
nickvergessen committed Apr 29, 2015
1 parent c1702b8 commit 1ad09d9
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build/build.xml
Original file line number Diff line number Diff line change
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.1.4-RC1" />
<property name="newversion" value="3.1.4-RC2" />
<property name="prevversion" value="3.1.3" />
<property name="olderversions" value="3.0.12, 3.0.13, 3.0.13-PL1, 3.0.14-RC1, 3.1.0, 3.1.1, 3.1.2" />
<property name="olderversions" value="3.0.12, 3.0.13, 3.0.13-PL1, 3.0.14-RC1, 3.1.0, 3.1.1, 3.1.2, 3.1.4-RC1" />
<!-- no configuration should be needed beyond this point -->

<property name="oldversions" value="${olderversions}, ${prevversion}" />
Expand Down
2 changes: 1 addition & 1 deletion phpBB/includes/constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
*/

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

// QA-related
// define('PHPBB_QA', 1);
Expand Down
2 changes: 1 addition & 1 deletion phpBB/install/schemas/schema_data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ 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 ('use_system_cron', '0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '3.1.4-RC1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '3.1.4-RC2');
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
32 changes: 32 additions & 0 deletions phpBB/phpbb/db/migration/data/v31x/v314rc2.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/

namespace phpbb\db\migration\data\v31x;

class v314rc2 extends \phpbb\db\migration\migration
{
static public function depends_on()
{
return array(
'\phpbb\db\migration\data\v30x\release_3_0_14_rc1',
'\phpbb\db\migration\data\v31x\v314rc1',
);
}

public function update_data()
{
return array(
array('config.update', array('version', '3.1.4-RC2')),
);
}
}

0 comments on commit 1ad09d9

Please sign in to comment.