From: Guido van Rossum Date: Fri, 30 May 2003 13:41:07 +0000 (+0000) Subject: Bump the version to 2.2.3 (final). X-Git-Tag: v2.2.3~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=abf32d6c113286f7aa941d2943565f159b1196a0;p=thirdparty%2FPython%2Fcpython.git Bump the version to 2.2.3 (final). --- diff --git a/Include/patchlevel.h b/Include/patchlevel.h index 82873c43728e..1744b468fb32 100644 --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -22,11 +22,11 @@ #define PY_MAJOR_VERSION 2 #define PY_MINOR_VERSION 2 #define PY_MICRO_VERSION 3 -#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA -#define PY_RELEASE_SERIAL 1 +#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL +#define PY_RELEASE_SERIAL 0 /* Version as a string */ -#define PY_VERSION "2.2.3c1+" +#define PY_VERSION "2.2.3" /* 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 >= ... */