Update to 0.9.1c2.

This commit is contained in:
adustman
2001-09-20 17:15:02 +00:00
parent 73f7dcf29f
commit aad9f23a54
4 changed files with 9 additions and 3 deletions

View File

@ -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

View File

@ -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]

View File

@ -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

View File

@ -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",