diff --git a/MySQLdb/MySQLdb/__init__.py b/MySQLdb/MySQLdb/__init__.py index 7b2265b..b2384a2 100644 --- a/MySQLdb/MySQLdb/__init__.py +++ b/MySQLdb/MySQLdb/__init__.py @@ -19,8 +19,8 @@ version_info = ( 0, 9, 0, - "candidate", - 2) + "final", + 1) if version_info[3] == "final": __version__ = "%d.%d.%d" % version_info[:3] else: __version__ = "%d.%d.%d%1.1s%d" % version_info[:5] diff --git a/MySQLdb/_mysql.c b/MySQLdb/_mysql.c index a025bea..dea710a 100644 --- a/MySQLdb/_mysql.c +++ b/MySQLdb/_mysql.c @@ -1,5 +1,5 @@ -#define version_info "(0,9,0,'candidate',2)" -#define __version__ "0.9.0c2" +#define version_info "(0,9,0,'final',1)" +#define __version__ "0.9.0" /* 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 diff --git a/MySQLdb/setup.py b/MySQLdb/setup.py index e8c8303..55fb2c6 100644 --- a/MySQLdb/setup.py +++ b/MySQLdb/setup.py @@ -75,7 +75,7 @@ MySQLdb. MySQLdb is free software. setup (# Distribution meta-data name = "MySQL-python", - version = "0.9.0c2", + version = "0.9.0", description = "An interface to MySQL", long_description=long_description, author = "Andy Dustman",