|
8 | 8 | * |
9 | 9 | */ |
10 | 10 |
|
11 | | -define('UPDATES_TO_VERSION', '3.0.14-dev'); |
| 11 | +define('UPDATES_TO_VERSION', '3.0.14-RC1'); |
12 | 12 |
|
13 | 13 | // Enter any version to update from to test updates. The version within the db will not be updated. |
14 | 14 | define('DEBUG_FROM_VERSION', false); |
@@ -949,7 +949,7 @@ function database_update_info() |
949 | 949 | // this column was removed from the database updater |
950 | 950 | // after 3.0.9-RC3 was released. It might still exist |
951 | 951 | // 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 |
953 | 953 | // removing a primary key. |
954 | 954 | // 'attempt_id' => array('UINT', NULL, 'auto_increment'), |
955 | 955 | 'attempt_ip' => array('VCHAR:40', ''), |
@@ -1014,9 +1014,13 @@ function database_update_info() |
1014 | 1014 | // No changes from 3.0.12 to 3.0.13-RC1 |
1015 | 1015 | '3.0.12' => array(), |
1016 | 1016 | // 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(), |
1018 | 1022 |
|
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 */ |
1020 | 1024 | ); |
1021 | 1025 | } |
1022 | 1026 |
|
@@ -2266,6 +2270,14 @@ function change_database_data(&$no_updates, $version) |
2266 | 2270 | // No changes from 3.0.13-RC1 to 3.0.13 |
2267 | 2271 | case '3.0.13-RC1': |
2268 | 2272 | 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; |
2269 | 2281 | } |
2270 | 2282 | } |
2271 | 2283 |
|
|
0 commit comments