mirror of
https://github.com/PyMySQL/mysqlclient.git
synced 2025-08-15 19:31:54 +08:00
Update to 0.9.1c2.
This commit is contained in:
@ -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
|
||||
|
@ -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]
|
||||
|
||||
|
@ -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
|
||||
|
@ -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",
|
||||
|
Reference in New Issue
Block a user