From a18138516efff33e6cd5244f85fbb3d04c55647a Mon Sep 17 00:00:00 2001 From: adustman Date: Sun, 23 Dec 2001 21:39:31 +0000 Subject: [PATCH] 0.9.2 alpha 1 --- MySQLdb/MySQLdb/__init__.py | 4 ++-- MySQLdb/_mysql.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/MySQLdb/MySQLdb/__init__.py b/MySQLdb/MySQLdb/__init__.py index 3accfa0..7199353 100644 --- a/MySQLdb/MySQLdb/__init__.py +++ b/MySQLdb/MySQLdb/__init__.py @@ -18,8 +18,8 @@ __revision__ = """$Revision$"""[11:-2] version_info = ( 0, 9, - 1, - "final", + 2, + "alpha", 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/_mysql.c b/MySQLdb/_mysql.c index d067670..54509db 100644 --- a/MySQLdb/_mysql.c +++ b/MySQLdb/_mysql.c @@ -1,5 +1,5 @@ -#define version_info "(0,9,1,'final',1)" -#define __version__ "0.9.1" +#define version_info "(0,9,2,'alpha',1)" +#define __version__ "0.9.2" /* This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by