comparison gamelib/version.py @ 477:51055400a9a8 1.0.1

Version bump for 1.0.1 "service pack".
author Jeremy Thurgood <firxen@gmail.com>
date Sun, 29 Aug 2010 12:33:21 +0200
parents 44efcd108f70
children ec855943f898
comparison
equal deleted inserted replaced
476:c72946d3a59a 477:51055400a9a8
1 """Suspended Sentence Version Information""" 1 """Suspended Sentence Version Information"""
2 2
3 VERSION = (1, 0, 0, 'final', 0) 3 VERSION = (1, 0, 1, '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]),