From: Barry Warsaw Date: Thu, 22 May 2003 14:44:31 +0000 (+0000) Subject: Prepare for 2.2.3c1 (release candidate 1) X-Git-Tag: v2.2.3c1~18 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=53b01798972e0b75ff87d44412b3f1f44a77bca3;p=thirdparty%2FPython%2Fcpython.git Prepare for 2.2.3c1 (release candidate 1) --- diff --git a/Include/patchlevel.h b/Include/patchlevel.h index 864a6e4a105e..cfd98f81bba5 100644 --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -21,12 +21,12 @@ /* Version parsed out into numeric values */ #define PY_MAJOR_VERSION 2 #define PY_MINOR_VERSION 2 -#define PY_MICRO_VERSION 2 -#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL -#define PY_RELEASE_SERIAL 0 +#define PY_MICRO_VERSION 3 +#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA +#define PY_RELEASE_SERIAL 1 /* Version as a string */ -#define PY_VERSION "2.2.2" +#define PY_VERSION "2.2.3c1" /* 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 >= ... */