From ff06467924e78586a503f9b15f3f9c27b9ce7af8 Mon Sep 17 00:00:00 2001 From: adustman Date: Sun, 23 Nov 2003 22:04:04 +0000 Subject: [PATCH] Version bump --- MySQLdb/MySQLdb/__init__.py | 2 +- MySQLdb/_mysql.c | 2 +- MySQLdb/setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MySQLdb/MySQLdb/__init__.py b/MySQLdb/MySQLdb/__init__.py index e40496c..0c5bc4e 100644 --- a/MySQLdb/MySQLdb/__init__.py +++ b/MySQLdb/MySQLdb/__init__.py @@ -20,7 +20,7 @@ version_info = ( 9, 3, "beta", - 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] diff --git a/MySQLdb/_mysql.c b/MySQLdb/_mysql.c index 7dc206b..2fa06d8 100644 --- a/MySQLdb/_mysql.c +++ b/MySQLdb/_mysql.c @@ -1,4 +1,4 @@ -#define version_info "(0,9,3,'beta',1)" +#define version_info "(0,9,3,'beta',2)" #define __version__ "0.9.3" /* This program is free software; you can redistribute it and/or modify diff --git a/MySQLdb/setup.py b/MySQLdb/setup.py index 2741d5e..f6ebc14 100644 --- a/MySQLdb/setup.py +++ b/MySQLdb/setup.py @@ -18,7 +18,7 @@ embedded_server = (mysqlclient == 'mysqld') name = "MySQL-%s" % os.path.basename(sys.executable) if embedded_server: name = name + "-embedded" -version = "0.9.3b1" +version = "0.9.3b2" # include files and library locations should cover most platforms include_dirs = [