aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-08-13 18:32:49 +0000
committerlloyd <[email protected]>2009-08-13 18:32:49 +0000
commit1c08f8e0258d1b0317fb837e78b4cef9359af9c9 (patch)
treec10b30514abb18577805a6437df517017594ac16 /configure.py
parent5a1329ff7d80349598e50a1ec63abb5334ddc2ac (diff)
Move version #s to 1.9.0-pre
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.py b/configure.py
index 75e57f95e..286e61979 100755
--- a/configure.py
+++ b/configure.py
@@ -36,10 +36,10 @@ class BuildConfigurationInformation(object):
Version information
"""
version_major = 1
- version_minor = 8
- version_patch = 6
- version_so_patch = 2
- version_suffix = ''
+ version_minor = 9
+ version_patch = 0
+ version_so_patch = 0
+ version_suffix = '-pre'
version_string = '%d.%d.%d%s' % (
version_major, version_minor, version_patch, version_suffix)