diff --git a/MySQLdb/CHANGELOG b/MySQLdb/CHANGELOG index 8a0d7de..4e3cfef 100644 --- a/MySQLdb/CHANGELOG +++ b/MySQLdb/CHANGELOG @@ -1,3 +1,9 @@ +0.9.1c2 + + * Exceptions on connect() were not handled correctly. + + * Added CHANGELOG to MANIFEST.in. (John Bowe) + 0.9.1c1 * Added ER_PARSE_ERROR as a ProgrammingError, because diff --git a/MySQLdb/MySQLdb/__init__.py b/MySQLdb/MySQLdb/__init__.py index 661f7c7..7850863 100644 --- a/MySQLdb/MySQLdb/__init__.py +++ b/MySQLdb/MySQLdb/__init__.py @@ -20,7 +20,7 @@ version_info = ( 9, 1, "gamma", - 1) + 2) 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 6104a8d..f899349 100644 --- a/MySQLdb/_mysql.c +++ b/MySQLdb/_mysql.c @@ -1,4 +1,4 @@ -#define version_info "(0,9,1,'gamma',1)" +#define version_info "(0,9,1,'gamma',2)" #define __version__ "0.9.1" /* This program is free software; you can redistribute it and/or modify diff --git a/MySQLdb/setup.py b/MySQLdb/setup.py index b7eef4a..63e858f 100644 --- a/MySQLdb/setup.py +++ b/MySQLdb/setup.py @@ -81,7 +81,7 @@ MySQLdb. MySQLdb is free software. setup (# Distribution meta-data name = "MySQL-python", - version = "0.9.1c1", + version = "0.9.1c2", description = "An interface to MySQL", long_description=long_description, author = "Andy Dustman",