0.9.2 (finally)

This commit is contained in:
adustman
2002-07-21 04:05:17 +00:00
parent 98c1aa154e
commit 43994da567
4 changed files with 16 additions and 5 deletions

View File

@ -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 0.9.2c3
* Did some more setup cleanups. Apparently on non-server versions of * Did some more setup cleanups. Apparently on non-server versions of

View File

@ -19,8 +19,8 @@ version_info = (
0, 0,
9, 9,
2, 2,
"gamma", "final",
3) 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,4 +1,4 @@
#define version_info "(0,9,2,'gamma',3)" #define version_info "(0,9,2,'final',1)"
#define __version__ "0.9.2" #define __version__ "0.9.2"
/* /*
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify

View File

@ -18,7 +18,7 @@ thread_safe_library = YES
# forget to include the value of sys.platform and os.name. # forget to include the value of sys.platform and os.name.
name = "MySQL-%s" % os.path.basename(sys.executable) 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" mysqlclient = thread_safe_library and "mysqlclient_r" or "mysqlclient"
@ -102,7 +102,7 @@ MySQLdb. MySQLdb is free software.
setup (# Distribution meta-data setup (# Distribution meta-data
name = name, name = name,
version = version, version = version,
description = "An interface to MySQL", description = "Python interface to MySQL",
long_description=long_description, long_description=long_description,
author = "Andy Dustman", author = "Andy Dustman",
author_email = "andy@dustman.net", author_email = "andy@dustman.net",