sbsv2/raptor/python/raptor_version.py
changeset 625 a1925fb7753a
parent 616 24e4ef208cca
child 630 31ef8a13d4f4
equal deleted inserted replaced
624:f70b728ea30c 625:a1925fb7753a
    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,0,"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