comparison gamelib/version.py @ 468:44efcd108f70

Version 1.0.0 FINAL. (I hope.)
author Jeremy Thurgood <firxen@gmail.com>
date Sun, 29 Aug 2010 01:48:59 +0200
parents a51565a59df3
children 51055400a9a8
comparison
equal deleted inserted replaced
467:73f56bc78cc3 468:44efcd108f70
1 """Suspended Sentence Version Information""" 1 """Suspended Sentence Version Information"""
2 2
3 VERSION = (1, 0, 0, 'rc', 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]),