equal
deleted
inserted
replaced
12 # Contributors: |
12 # Contributors: |
13 # |
13 # |
14 # Description: |
14 # Description: |
15 # raptor version information module |
15 # raptor version information module |
16 |
16 |
17 # replace CHANGESET with the Hg changeset for ANY release |
17 # replace ISODATE with the creation date of the release |
|
18 # replace CHANGESET with the Hg changeset of the release |
|
19 # |
|
20 # both of these are done automatically by the installer builder. |
18 |
21 |
19 version=(2,14,2,"2010-07-13","symbian build system","CHANGESET") |
22 version=(2,15,1,"ISODATE","symbian build system","CHANGESET") |
20 |
23 |
21 def numericversion(): |
24 def numericversion(): |
22 """Raptor version string""" |
25 """Raptor version string""" |
23 return "%d.%d.%d" % version[:3] |
26 return "%d.%d.%d" % version[:3] |
24 |
27 |