comparison gamelib/version.py @ 358:be6c1be37f28

Release 1.0.0.
author Simon Cross <hodgestar@gmail.com>
date Sat, 05 Sep 2009 23:59:56 +0000
parents 6ade2b371445
children c14a6d640507 3d173ea43ad5
comparison
equal deleted inserted replaced
357:2304bec49777 358:be6c1be37f28
1 """Operation Fox Assault Version Information""" 1 """Operation Fox Assault Version Information"""
2 2
3 VERSION = (1, 0, 0, 'alpha', 1) 3 VERSION = (1, 0, 0, 'final', 0)
4 BASE_VERSION_STR = '.'.join([str(x) for x in VERSION[:3]]) 4 BASE_VERSION_STR = '.'.join([str(x) for x in VERSION[:3]])
5 VERSION_STR = { 5 VERSION_STR = {
6 'final': BASE_VERSION_STR, 6 'final': BASE_VERSION_STR,
7 'alpha': BASE_VERSION_STR + 'a' + str(VERSION[4]), 7 'alpha': BASE_VERSION_STR + 'a' + str(VERSION[4]),
8 'rc': BASE_VERSION_STR + 'rc' + str(VERSION[4]), 8 'rc': BASE_VERSION_STR + 'rc' + str(VERSION[4]),