Version 1.2.1c1

This commit is contained in:
adustman
2005-04-10 20:56:55 +00:00
parent 14807597cb
commit cebe539399
3 changed files with 5 additions and 5 deletions

View File

@ -18,8 +18,8 @@ __revision__ = """$Revision$"""[11:-2]
version_info = ( version_info = (
1, 1,
2, 2,
0, 1,
"final", "gamma",
1) 1)
if version_info[3] == "final": __version__ = "%d.%d.%d" % version_info[:3] if version_info[3] == "final": __version__ = "%d.%d.%d" % version_info[:3]
else: __version__ = "%d.%d.%d%1.1s%d" % version_info[:5] else: __version__ = "%d.%d.%d%1.1s%d" % version_info[:5]

View File

@ -1,5 +1,5 @@
#define version_info "(1,2,0,'final',1)" #define version_info "(1,2,1,'gamma',1)"
#define __version__ "1.2.0" #define __version__ "1.2.1c1"
/* /*
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

View File

@ -37,7 +37,7 @@ embedded_server = (mysqlclient == 'mysqld')
name = "MySQL-%s" % os.path.basename(sys.executable) name = "MySQL-%s" % os.path.basename(sys.executable)
if embedded_server: if embedded_server:
name = name + "-embedded" name = name + "-embedded"
version = "1.2.0" version = "1.2.1c1"
extra_objects = [] extra_objects = []