From cebe539399d2c9295ca068163ba6881a1b6548c6 Mon Sep 17 00:00:00 2001 From: adustman Date: Sun, 10 Apr 2005 20:56:55 +0000 Subject: [PATCH] Version 1.2.1c1 --- MySQLdb/MySQLdb/__init__.py | 4 ++-- MySQLdb/_mysql.c | 4 ++-- MySQLdb/setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/MySQLdb/MySQLdb/__init__.py b/MySQLdb/MySQLdb/__init__.py index 9531c42..c89dad0 100644 --- a/MySQLdb/MySQLdb/__init__.py +++ b/MySQLdb/MySQLdb/__init__.py @@ -18,8 +18,8 @@ __revision__ = """$Revision$"""[11:-2] version_info = ( 1, 2, - 0, - "final", + 1, + "gamma", 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 7b61a72..107f11b 100644 --- a/MySQLdb/_mysql.c +++ b/MySQLdb/_mysql.c @@ -1,5 +1,5 @@ -#define version_info "(1,2,0,'final',1)" -#define __version__ "1.2.0" +#define version_info "(1,2,1,'gamma',1)" +#define __version__ "1.2.1c1" /* 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 diff --git a/MySQLdb/setup.py b/MySQLdb/setup.py index 05233da..b0230f4 100644 --- a/MySQLdb/setup.py +++ b/MySQLdb/setup.py @@ -37,7 +37,7 @@ embedded_server = (mysqlclient == 'mysqld') name = "MySQL-%s" % os.path.basename(sys.executable) if embedded_server: name = name + "-embedded" -version = "1.2.0" +version = "1.2.1c1" extra_objects = []