diff --git a/MySQLdb/CHANGELOG b/MySQLdb/CHANGELOG index 4484020..1dd1ab7 100644 --- a/MySQLdb/CHANGELOG +++ b/MySQLdb/CHANGELOG @@ -1,3 +1,14 @@ +0.9.2 + + * Minor RPM packaging cleanups. + + * cursor.execute(query) with no args leaves the original query string + alone; it no longer tries to do query % (). This is to maintain + backwards compatibility. The only time this is an issue is if your + query has percent signs (%) in it, as in the SQL wildcard used for + LIKE comparisions. I strongly recommend passing any string literals + as parameters to avoid this issue. + 0.9.2c3 * Did some more setup cleanups. Apparently on non-server versions of diff --git a/MySQLdb/MySQLdb/__init__.py b/MySQLdb/MySQLdb/__init__.py index 8f68bfb..ff7c302 100644 --- a/MySQLdb/MySQLdb/__init__.py +++ b/MySQLdb/MySQLdb/__init__.py @@ -19,8 +19,8 @@ version_info = ( 0, 9, 2, - "gamma", - 3) + "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 ba49d43..b7a58f4 100644 --- a/MySQLdb/_mysql.c +++ b/MySQLdb/_mysql.c @@ -1,4 +1,4 @@ -#define version_info "(0,9,2,'gamma',3)" +#define version_info "(0,9,2,'final',1)" #define __version__ "0.9.2" /* This program is free software; you can redistribute it and/or modify diff --git a/MySQLdb/setup.py b/MySQLdb/setup.py index 7f599c2..da93a96 100644 --- a/MySQLdb/setup.py +++ b/MySQLdb/setup.py @@ -18,7 +18,7 @@ thread_safe_library = YES # forget to include the value of sys.platform and os.name. name = "MySQL-%s" % os.path.basename(sys.executable) -version = "0.9.2c3" +version = "0.9.2" mysqlclient = thread_safe_library and "mysqlclient_r" or "mysqlclient" @@ -102,7 +102,7 @@ MySQLdb. MySQLdb is free software. setup (# Distribution meta-data name = name, version = version, - description = "An interface to MySQL", + description = "Python interface to MySQL", long_description=long_description, author = "Andy Dustman", author_email = "andy@dustman.net",