Skip to content

Commit ce74a0b

Browse files
committed
[3.0.x] Bump version numbers for 3.0.14-RC1 release.
1 parent cd6c042 commit ce74a0b

4 files changed

Lines changed: 19 additions & 7 deletions

File tree

build/build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<project name="phpBB" description="The phpBB forum software" default="all" basedir="../">
44
<!-- a few settings for the build -->
5-
<property name="newversion" value="3.0.14-dev" />
5+
<property name="newversion" value="3.0.14-RC1" />
66
<property name="prevversion" value="3.0.13-PL1" />
77
<property name="olderversions" value="3.0.2, 3.0.3, 3.0.4, 3.0.5, 3.0.6, 3.0.7, 3.0.7-PL1, 3.0.8, 3.0.9, 3.0.10, 3.0.11, 3.0.12, 3.0.13" />
88
<!-- no configuration should be needed beyond this point -->

phpBB/includes/constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*/
2626

2727
// phpBB Version
28-
define('PHPBB_VERSION', '3.0.14-dev');
28+
define('PHPBB_VERSION', '3.0.14-RC1');
2929

3030
// QA-related
3131
// define('PHPBB_QA', 1);

phpBB/install/database_update.php

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*/
1010

11-
define('UPDATES_TO_VERSION', '3.0.14-dev');
11+
define('UPDATES_TO_VERSION', '3.0.14-RC1');
1212

1313
// Enter any version to update from to test updates. The version within the db will not be updated.
1414
define('DEBUG_FROM_VERSION', false);
@@ -949,7 +949,7 @@ function database_update_info()
949949
// this column was removed from the database updater
950950
// after 3.0.9-RC3 was released. It might still exist
951951
// in 3.0.9-RCX installations and has to be dropped in
952-
// 3.0.14 after the db_tools class is capable of properly
952+
// 3.0.15 after the db_tools class is capable of properly
953953
// removing a primary key.
954954
// 'attempt_id' => array('UINT', NULL, 'auto_increment'),
955955
'attempt_ip' => array('VCHAR:40', ''),
@@ -1014,9 +1014,13 @@ function database_update_info()
10141014
// No changes from 3.0.12 to 3.0.13-RC1
10151015
'3.0.12' => array(),
10161016
// No changes from 3.0.13-RC1 to 3.0.13
1017-
'3.0.13-RC1' => array(),
1017+
'3.0.13-RC1' => array(),
1018+
// No changes from 3.0.13 to 3.0.13-PL1
1019+
'3.0.13' => array(),
1020+
// No changes from 3.0.13-PL1 to 3.0.14-RC1
1021+
'3.0.13-PL1' => array(),
10181022

1019-
/** @todo DROP LOGIN_ATTEMPT_TABLE.attempt_id in 3.0.14-RC1 */
1023+
/** @todo DROP LOGIN_ATTEMPT_TABLE.attempt_id in 3.0.15-RC1 */
10201024
);
10211025
}
10221026

@@ -2266,6 +2270,14 @@ function change_database_data(&$no_updates, $version)
22662270
// No changes from 3.0.13-RC1 to 3.0.13
22672271
case '3.0.13-RC1':
22682272
break;
2273+
2274+
// No changes from 3.0.13 to 3.0.13-PL1
2275+
case '3.0.13':
2276+
break;
2277+
2278+
// No changes from 3.0.13-PL1 to 3.0.14-RC1
2279+
case '3.0.13-PL1':
2280+
break;
22692281
}
22702282
}
22712283

phpBB/install/schemas/schema_data.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('topics_per_page',
246246
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tpl_allow_php', '0');
247247
INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_icons_path', 'images/upload_icons');
248248
INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_path', 'files');
249-
INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '3.0.14-dev');
249+
INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '3.0.14-RC1');
250250
INSERT INTO phpbb_config (config_name, config_value) VALUES ('warnings_expire_days', '90');
251251
INSERT INTO phpbb_config (config_name, config_value) VALUES ('warnings_gc', '14400');
252252

0 commit comments

Comments
 (0)