Commit | Line | Data |
---|---|---|
b325120a | 1 | <?php |
8d07e3e0 | 2 | |
0b64887b DO |
3 | /* |
4 | Bumping up of CODE_VERSION requires precise timing as described in the | |
5 | Developer's Guide. Otherwise working copies updated from SVN (for example, | |
6 | committers' copies) can run into issues: | |
7 | 1. The source is rendered unfunctional after "svn update", asking users to | |
8 | finish the "upgrade". | |
9 | 2. Once the batch for the "upgrade" is executed, the queries, which get added | |
10 | to the batch later, are likely to receive no real execution. | |
11 | 3. In case the executed part of such partial batch is found incorrect later, | |
12 | but before the release, fixing the wrong queries will be harder, hence they | |
13 | have already been executed. | |
14 | */ | |
15 | ||
16 | define ('CODE_VERSION', '0.19.0'); | |
e673ee24 | 17 | |
ca3d68bd DO |
18 | $max_dict_key = array |
19 | ( | |
20 | '0.17.0' => 988, | |
21 | '0.17.1' => 988, | |
22 | '0.17.2' => 1150, | |
70992855 | 23 | '0.17.3' => 1150, |
681f2138 | 24 | '0.17.4' => 1150, |
2803fbe6 | 25 | '0.17.5' => 1322, |
63811a09 | 26 | '0.17.6' => 1326, |
026a79ee | 27 | '0.17.7' => 1326, |
ad9da675 | 28 | '0.17.8' => 1334, |
0e87ece7 | 29 | '0.17.9' => 1334, |
4b43f713 | 30 | '0.17.10' => 1349, |
4a4a5440 DO |
31 | '0.17.11' => 1349, |
32 | '0.18.0' => 1349, | |
4eeadb79 | 33 | '0.18.1' => 1352, |
98cc6bd8 | 34 | '0.18.2' => 1352, |
0891c041 | 35 | '0.18.3' => 1356, |
ec523868 | 36 | '0.18.4' => 1364, |
712010be | 37 | '0.18.5' => 1370, |
f2f95f99 | 38 | '0.18.6' => 1370, |
9fb6900d | 39 | '0.18.7' => 1370, |
0682218d | 40 | '0.19.0' => 1559, |
1d5dd3a1 | 41 | '0.19.1' => 1559, |
ca3d68bd DO |
42 | ); |
43 | ||
e673ee24 | 44 | ?> |