comparison gamelib/version.py @ 163:2854aa4f5ac2

Update version and build stuff.
author Jeremy Thurgood <firxen@gmail.com>
date Wed, 25 Aug 2010 10:05:48 +0200
parents 322cbc0a8cce
children fd9e84efe325
comparison
equal deleted inserted replaced
162:225e3a4b1e85 163:2854aa4f5ac2
1 """Suspended Sentence Version Information""" 1 """Suspended Sentence Version Information"""
2 2
3 VERSION = (0, 1, 0, 'alpha', 1) 3 VERSION = (0, 2, 0, 'alpha', 1)
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]),