From 1f9f5ded7a1888c528bfa32cea4e0ccefb5777ea Mon Sep 17 00:00:00 2001 From: adustman Date: Wed, 17 Oct 2001 03:21:22 +0000 Subject: [PATCH] 0.9.0 updates --- MySQLdb/CHANGELOG | 9 +++++++++ MySQLdb/MySQLdb/__init__.py | 4 ++-- MySQLdb/README | 5 +++-- MySQLdb/_mysql.c | 2 +- MySQLdb/setup.py | 2 +- 5 files changed, 16 insertions(+), 6 deletions(-) diff --git a/MySQLdb/CHANGELOG b/MySQLdb/CHANGELOG index 4e3cfef..0474813 100644 --- a/MySQLdb/CHANGELOG +++ b/MySQLdb/CHANGELOG @@ -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 * Exceptions on connect() were not handled correctly. diff --git a/MySQLdb/MySQLdb/__init__.py b/MySQLdb/MySQLdb/__init__.py index 96404c6..3accfa0 100644 --- a/MySQLdb/MySQLdb/__init__.py +++ b/MySQLdb/MySQLdb/__init__.py @@ -19,8 +19,8 @@ version_info = ( 0, 9, 1, - "gamma", - 2) + "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/README b/MySQLdb/README index e3dc760..b7f2be8 100644 --- a/MySQLdb/README +++ b/MySQLdb/README @@ -19,7 +19,8 @@ MySQL 3.22.19 or higher -- Versions lower than 3.22 definitely WON'T WORK. -- Versions lower than 3.22.19 might not work. -- 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. -- 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 @@ -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. Andy Dustman -2001-09-20 +2001-10-16 diff --git a/MySQLdb/_mysql.c b/MySQLdb/_mysql.c index f899349..5c02588 100644 --- a/MySQLdb/_mysql.c +++ b/MySQLdb/_mysql.c @@ -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" /* This program is free software; you can redistribute it and/or modify diff --git a/MySQLdb/setup.py b/MySQLdb/setup.py index a4b5e0a..2068fb0 100644 --- a/MySQLdb/setup.py +++ b/MySQLdb/setup.py @@ -87,7 +87,7 @@ MySQLdb. MySQLdb is free software. setup (# Distribution meta-data name = "MySQL-python", - version = "0.9.1c2", + version = "0.9.1", description = "An interface to MySQL", long_description=long_description, author = "Andy Dustman",