Update version numbers preparatory to tagging for release.
[u/mdw/putty] / mac / version.r
1 /*
2 * Current PuTTY version number. Minor is in BCD
3 */
4 #define VERSION_MAJOR 0x00
5 #define VERSION_MINOR 0x54
6
7 resource 'vers' (1, purgeable) {
8 #ifdef RELEASE
9 VERSION_MAJOR, VERSION_MINOR,
10 beta,
11 #else
12 VERSION_MAJOR, VERSION_MINOR + 1,
13 development,
14 #endif
15 0, /* No prerelease version */
16 verBritain,
17 #ifdef RELEASESTR
18 RELEASESTR,
19 "Release " RELEASESTR,
20 #else
21 #ifdef SNAPSHOTSTR
22 SNAPSHOTSTR,
23 "Development snapshot " SNAPSHOTSTR,
24 #else
25 "unknown",
26 "Unidentified build, " $$Date " " $$Time,
27 #endif
28 #endif
29 };
30
31 resource 'vers' (2, purgeable) {
32 #ifdef RELEASE
33 VERSION_MAJOR, VERSION_MINOR,
34 beta,
35 #else
36 VERSION_MAJOR, VERSION_MINOR + 1,
37 development,
38 #endif
39 0, /* No prerelease version */
40 verBritain,
41 #ifdef RELEASESTR
42 RELEASESTR,
43 "PuTTY " RELEASESTR,
44 #else
45 #ifdef SNAPSHOTSTR
46 SNAPSHOTSTR,
47 "PuTTY snapshot " SNAPSHOTSTR,
48 #else
49 "unknown",
50 "PuTTY",
51 #endif
52 #endif
53 };
54