0.9.0 updates

This commit is contained in:
adustman
2001-10-17 03:21:22 +00:00
parent b0b1a82c59
commit 1f9f5ded7a
5 changed files with 16 additions and 6 deletions

View File

@ -1,3 +1,12 @@
0.9.1
* The Set class wasn't being imported into MySQLdb, so
"from MySQLdb import *" didn't work (not that I recommend you do
this).
* Tested a bit with MySQL-4.0.0. Seems to be okay. Embedded support
is forthcoming.
0.9.1c2 0.9.1c2
* Exceptions on connect() were not handled correctly. * Exceptions on connect() were not handled correctly.

View File

@ -19,8 +19,8 @@ version_info = (
0, 0,
9, 9,
1, 1,
"gamma", "final",
2) 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

@ -19,7 +19,8 @@ MySQL 3.22.19 or higher
-- Versions lower than 3.22 definitely WON'T WORK. -- Versions lower than 3.22 definitely WON'T WORK.
-- Versions lower than 3.22.19 might not work. -- Versions lower than 3.22.19 might not work.
-- The current 3.22 release is 3.22.32. -- The current 3.22 release is 3.22.32.
-- MySQL-3.23 is supported. Current release: 3.23.42 -- MySQL-4.0 is supported. Current release 4.0.0 alpha.
-- MySQL-3.23 is supported. Current release: 3.23.43.
-- MySQL-3.22 is slightly deprecated in favor of 3.23. -- MySQL-3.22 is slightly deprecated in favor of 3.23.
-- If you have Red Hat Linux or a similar packaging system, make sure -- If you have Red Hat Linux or a similar packaging system, make sure
you have the MySQL development headers and libraries. If you use the you have the MySQL development headers and libraries. If you use the
@ -64,4 +65,4 @@ Thanks go to Brian Fordham for cooking up an early version of setup.py.
License: GPL or the original license based on Python 1.5.2's license. License: GPL or the original license based on Python 1.5.2's license.
Andy Dustman <andy@dustman.net> Andy Dustman <andy@dustman.net>
2001-09-20 2001-10-16

View File

@ -1,4 +1,4 @@
#define version_info "(0,9,1,'gamma',2)" #define version_info "(0,9,1,'final',1)"
#define __version__ "0.9.1" #define __version__ "0.9.1"
/* /*
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

@ -87,7 +87,7 @@ MySQLdb. MySQLdb is free software.
setup (# Distribution meta-data setup (# Distribution meta-data
name = "MySQL-python", name = "MySQL-python",
version = "0.9.1c2", version = "0.9.1",
description = "An interface to MySQL", description = "An interface to MySQL",
long_description=long_description, long_description=long_description,
author = "Andy Dustman", author = "Andy Dustman",