From b93636d42d63bd396a31ff7cf699f8add006d765 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Fri, 12 Jul 2013 20:56:55 +0200 Subject: [develop-olympus] Increment version number to 3.0.13-dev. --- phpBB/install/database_update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/install/database_update.php') diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 5cb410bf29..757fc6499f 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -8,7 +8,7 @@ * */ -define('UPDATES_TO_VERSION', '3.0.12-RC1'); +define('UPDATES_TO_VERSION', '3.0.13-dev'); // Enter any version to update from to test updates. The version within the db will not be updated. define('DEBUG_FROM_VERSION', false); -- cgit v1.2.1 From 9f7f366573bc117d429e0c044836455662c344ed Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Wed, 21 Jan 2015 01:32:18 +0100 Subject: [develop-olympus] Bump version numbers for 3.0.13-RC1 release. --- phpBB/install/database_update.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'phpBB/install/database_update.php') diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 7c57dfdc1f..15f9c589d3 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -8,7 +8,7 @@ * */ -define('UPDATES_TO_VERSION', '3.0.13-dev'); +define('UPDATES_TO_VERSION', '3.0.13-RC1'); // Enter any version to update from to test updates. The version within the db will not be updated. define('DEBUG_FROM_VERSION', false); @@ -949,7 +949,7 @@ function database_update_info() // this column was removed from the database updater // after 3.0.9-RC3 was released. It might still exist // in 3.0.9-RCX installations and has to be dropped in - // 3.0.13 after the db_tools class is capable of properly + // 3.0.14 after the db_tools class is capable of properly // removing a primary key. // 'attempt_id' => array('UINT', NULL, 'auto_increment'), 'attempt_ip' => array('VCHAR:40', ''), @@ -1011,8 +1011,10 @@ function database_update_info() '3.0.12-RC2' => array(), // No changes from 3.0.12-RC3 to 3.0.12 '3.0.12-RC3' => array(), + // No changes from 3.0.12 to 3.0.13-RC1 + '3.0.12' => array(), - /** @todo DROP LOGIN_ATTEMPT_TABLE.attempt_id in 3.0.13-RC1 */ + /** @todo DROP LOGIN_ATTEMPT_TABLE.attempt_id in 3.0.14-RC1 */ ); } @@ -2254,6 +2256,10 @@ function change_database_data(&$no_updates, $version) // No changes from 3.0.12-RC3 to 3.0.12 case '3.0.12-RC3': break; + + // No changes from 3.0.12 to 3.0.13-RC1 + case '3.0.12': + break; } } -- cgit v1.2.1 From 14585fcb4f1d6238a188089891a11895a557f99e Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Wed, 21 Jan 2015 15:15:30 +0100 Subject: [develop-olympus] Increment version number to 3.0.14-dev. --- phpBB/install/database_update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/install/database_update.php') diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 15f9c589d3..8e5b5969ad 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -8,7 +8,7 @@ * */ -define('UPDATES_TO_VERSION', '3.0.13-RC1'); +define('UPDATES_TO_VERSION', '3.0.14-dev'); // Enter any version to update from to test updates. The version within the db will not be updated. define('DEBUG_FROM_VERSION', false); -- cgit v1.2.1 From 5ce89ae82f7be38ef539872dc1fd360fb45c906a Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Mon, 26 Jan 2015 18:08:31 +0100 Subject: [prep-release-3.0.13] Bump version numbers for 3.0.13 release --- phpBB/install/database_update.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'phpBB/install/database_update.php') diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 15f9c589d3..51fe0a8cab 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -8,7 +8,7 @@ * */ -define('UPDATES_TO_VERSION', '3.0.13-RC1'); +define('UPDATES_TO_VERSION', '3.0.13'); // Enter any version to update from to test updates. The version within the db will not be updated. define('DEBUG_FROM_VERSION', false); @@ -1013,6 +1013,8 @@ function database_update_info() '3.0.12-RC3' => array(), // No changes from 3.0.12 to 3.0.13-RC1 '3.0.12' => array(), + // No changes from 3.0.13-RC1 to 3.0.13 + '3.0.13-RC1' => array(), /** @todo DROP LOGIN_ATTEMPT_TABLE.attempt_id in 3.0.14-RC1 */ ); @@ -2260,6 +2262,10 @@ function change_database_data(&$no_updates, $version) // No changes from 3.0.12 to 3.0.13-RC1 case '3.0.12': break; + + // No changes from 3.0.13-RC1 to 3.0.13 + case '3.0.13-RC1': + break; } } -- cgit v1.2.1 From ce74a0bd6ce6cd0bcb7cfe1c05bfadac7cc5151c Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Mon, 27 Apr 2015 23:22:44 +0200 Subject: [3.0.x] Bump version numbers for 3.0.14-RC1 release. --- phpBB/install/database_update.php | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) (limited to 'phpBB/install/database_update.php') diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 5c0ead437d..f81576fea6 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -8,7 +8,7 @@ * */ -define('UPDATES_TO_VERSION', '3.0.14-dev'); +define('UPDATES_TO_VERSION', '3.0.14-RC1'); // Enter any version to update from to test updates. The version within the db will not be updated. define('DEBUG_FROM_VERSION', false); @@ -949,7 +949,7 @@ function database_update_info() // this column was removed from the database updater // after 3.0.9-RC3 was released. It might still exist // in 3.0.9-RCX installations and has to be dropped in - // 3.0.14 after the db_tools class is capable of properly + // 3.0.15 after the db_tools class is capable of properly // removing a primary key. // 'attempt_id' => array('UINT', NULL, 'auto_increment'), 'attempt_ip' => array('VCHAR:40', ''), @@ -1014,9 +1014,13 @@ function database_update_info() // No changes from 3.0.12 to 3.0.13-RC1 '3.0.12' => array(), // No changes from 3.0.13-RC1 to 3.0.13 - '3.0.13-RC1' => array(), + '3.0.13-RC1' => array(), + // No changes from 3.0.13 to 3.0.13-PL1 + '3.0.13' => array(), + // No changes from 3.0.13-PL1 to 3.0.14-RC1 + '3.0.13-PL1' => array(), - /** @todo DROP LOGIN_ATTEMPT_TABLE.attempt_id in 3.0.14-RC1 */ + /** @todo DROP LOGIN_ATTEMPT_TABLE.attempt_id in 3.0.15-RC1 */ ); } @@ -2266,6 +2270,14 @@ function change_database_data(&$no_updates, $version) // No changes from 3.0.13-RC1 to 3.0.13 case '3.0.13-RC1': break; + + // No changes from 3.0.13 to 3.0.13-PL1 + case '3.0.13': + break; + + // No changes from 3.0.13-PL1 to 3.0.14-RC1 + case '3.0.13-PL1': + break; } } -- cgit v1.2.1 From 5382552fc8ce84cb82153363b95bd2362275d628 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Sun, 3 May 2015 14:40:50 +0200 Subject: [prep-release-3.0.14] Bump version numbers for 3.0.14 release. --- phpBB/install/database_update.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'phpBB/install/database_update.php') diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index f81576fea6..a8c3ed385f 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -8,7 +8,7 @@ * */ -define('UPDATES_TO_VERSION', '3.0.14-RC1'); +define('UPDATES_TO_VERSION', '3.0.14'); // Enter any version to update from to test updates. The version within the db will not be updated. define('DEBUG_FROM_VERSION', false); @@ -1019,6 +1019,8 @@ function database_update_info() '3.0.13' => array(), // No changes from 3.0.13-PL1 to 3.0.14-RC1 '3.0.13-PL1' => array(), + // No changes from 3.0.14-RC1 to 3.0.14 + '3.0.14-RC1' => array(), /** @todo DROP LOGIN_ATTEMPT_TABLE.attempt_id in 3.0.15-RC1 */ ); @@ -2278,6 +2280,10 @@ function change_database_data(&$no_updates, $version) // No changes from 3.0.13-PL1 to 3.0.14-RC1 case '3.0.13-PL1': break; + + // No changes from 3.0.14-RC1 to 3.0.14 + case '3.0.14-RC1': + break; } } -- cgit v1.2.1