From: Fred Drake Date: Thu, 14 Oct 2004 05:07:17 +0000 (+0000) Subject: bump the version number prior to release X-Git-Tag: v2.4b1~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=78f58abea7c1b90499a965634488c525b73adba8;p=thirdparty%2FPython%2Fcpython.git bump the version number prior to release --- diff --git a/Include/patchlevel.h b/Include/patchlevel.h index 19531952ad93..2a2a839d7315 100644 --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -22,11 +22,11 @@ #define PY_MAJOR_VERSION 2 #define PY_MINOR_VERSION 4 #define PY_MICRO_VERSION 0 -#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA -#define PY_RELEASE_SERIAL 3 +#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_BETA +#define PY_RELEASE_SERIAL 1 /* Version as a string */ -#define PY_VERSION "2.4a3" +#define PY_VERSION "2.4b1" /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2. Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */